Name

InternationalString

Synopsis

public interface InternationalString {
// Public Instance Methods
    public abstract void addLocalizedString(LocalizedString localizedString)
       throws javax.xml.registry.JAXRException;             //L0
    public abstract void addLocalizedStrings(Collection localizedStrings)
       throws javax.xml.registry.JAXRException;             //L0
    public abstract LocalizedString getLocalizedString(Locale locale, 
String charsetName) 
       throws javax.xml.registry.JAXRException;             //L0
    public abstract Collection getLocalizedStrings(  )
       throws javax.xml.registry.JAXRException;             //L0
    public abstract String getValue(  )
       throws javax.xml.registry.JAXRException;             //L0
    public abstract String getValue(Locale locale)
       throws javax.xml.registry.JAXRException;             //L0
    public abstract void removeLocalizedString(LocalizedString localizedString) 
      throws javax.xml.registry.JAXRException;             //L0
    public abstract void removeLocalizedStrings(Collection localizedStrings)
       throws javax.xml.registry.JAXRException;             //L0
    public abstract void setValue(String value)
       throws javax.xml.registry.JAXRException;             //L0
    public abstract void setValue(Locale locale, String value)
       throws javax.xml.registry.JAXRException;             //L0
}

An InternationalString contains a string that has been translated for one or more locales, in which each translation is represented by a LocalizedString object that specifies a locale, the text to be used in that locale and, optionally, the character set that the locale requires. The LifeCycleManager createInternationalString( ) ...

Get Java Web Services in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.