All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dvb.spi.util.MultilingualString Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version


package org.dvb.spi.util;

/**
 * A string that has an associated language code.
 * @since MHP 1.1.3
 **/
final public class MultilingualString {

    /**
     * Initialize a new MultilingualString.
     *
     * @param s	The string that is in the given language.
     * @param languageCode The language code encoded as per ISO 639.2.
     **/
    public MultilingualString(String s, String languageCode) {
    }

    /**
     * Return the string.
     *
     * @return The string that is in the given language.
     **/
    public String getString() {
        return null;
    }

    /**
     * Return the language code.
     *
     * @return The language code encoded as per ISO 639.2.
     **/
    public String getLanguageCode() {
        return null;
    }

	/**
	 * Return a string representation of this object
	 * @return a string
	 */
    public String toString() {
        return null;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy