HEADER

biouml.standard.type
Interface LocalisedString


public interface LocalisedString


Method Summary
 String[]getLanguages()
          Returns languages for which value of this string is defined.
 StringgetValue(String language)
          Returns string value for the specified language.
 StringgetValue()
          Returns string value for the language that is set up as default.
 voidsetValue(String value, String language)
          Set up specified string value for the specified language.
 voidsetValue(String value)
          Set up the specified string value for the language that is set up as default.

Method Detail

getLanguages

public String[] getLanguages()
Returns languages for which value of this string is defined.

getValue

public String getValue(String language)
Returns string value for the specified language.

getValue

public String getValue()
Returns string value for the language that is set up as default.

setValue

public void setValue(String value, String language)
Set up specified string value for the specified language.

setValue

public void setValue(String value)
Set up the specified string value for the language that is set up as default.

FOOTER

BOTTOM