biouml.standard.type
Interface LocalisedString
- public interface LocalisedString
| Method Summary |
String[] | getLanguages() Returns languages for which value of this string is defined. |
String | getValue(String language) Returns string value for the specified language. |
String | getValue() Returns string value for the language that is set up as default. |
void | setValue(String value, String language) Set up specified string value for the specified language. |
void | setValue(String value) Set up the specified string value for the language that is set up as default. |
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.
BOTTOM