1 22 package javax.xml.registry.infomodel; 23 24 import java.util.Locale ; 25 import javax.xml.registry.JAXRException ; 26 27 31 public interface LocalizedString 32 { 33 public static final String DEFAULT_CHARSET_NAME="UTF-8"; 34 35 public String getCharsetName() throws JAXRException ; 36 public java.util.Locale getLocale() throws JAXRException ; 37 public String getValue() throws JAXRException ; 38 public void setCharsetName(String charsetName) throws JAXRException ; 39 public void setLocale(Locale locale) throws JAXRException ; 40 public void setValue(String value) throws JAXRException ; 41 } 42 | Popular Tags |