/*
 * Java-Gnome Bindings Library
 *
 * Copyright 1998-2004 the Java-Gnome Team, all rights reserved.
 *
 * The Java-Gnome bindings library is free software distributed under
 * the terms of the GNU Library General Public License version 2.
 */

package org.gnu.pango;
import org.gnu.glib.Boxed;
import org.gnu.glib.Handle;

/**
 * The PangoLanguage structure is used to represent a language.
 */
public class Language extends Boxed 
{
	/**
	 * Take a RFC-3066 format language tag as a string and convert it to a
	 * PangoLanguage pointer.
	 * <p>This function first canonicalizes the string by converting it to
	 * lowercase, mapping '_' to '-', and stripping all characters other than
	 * letters and '-'.
	 *
	 */
	public Language(String lang){
		handle = pango_language_from_string(lang);
	}

	/**
	 * Constructs a new language object from handle to native resources. This
	 * should only be used internally by the java-gnome packages.
	 */
	public Language(Handle handle){
		this.handle = handle;
	}

	/**
	 * Returns a RFC-3066 format string representing the given language tag.
	 */
	public String toString(){
		return pango_language_to_string(handle);
	}

    /****************************************
     * BEGINNING OF GENERATED CODE
     ****************************************/
    native static final protected int pango_language_get_type ();
    native static final protected Handle pango_language_from_string (String language);
    native static final protected String pango_language_to_string (Handle language);
    native static final protected boolean pango_language_matches (Handle language, String rangeList);
    /****************************************
     * END OF GENERATED CODE
     ****************************************/
}

