1 22 package javax.xml.registry.infomodel; 23 24 import javax.xml.registry.JAXRException ; 25 26 30 public interface TelephoneNumber 31 { 32 public String getAreaCode() throws JAXRException ; 33 public String getCountryCode() throws JAXRException ; 34 public String getExtension() throws JAXRException ; 35 public String getNumber() throws JAXRException ; 36 public String getType() throws JAXRException ; 37 public String getUrl() throws JAXRException ; 38 public void setAreaCode(String areaCode) throws JAXRException ; 39 public void setCountryCode(String cc) throws JAXRException ; 40 public void setExtension(String ext) throws JAXRException ; 41 public void setNumber(String number) throws JAXRException ; 42 public void setType(String type) throws JAXRException ; 43 public void setUrl(String url) throws JAXRException ; 44 45 } 46 | Popular Tags |