1 22 package javax.xml.registry.infomodel; 23 24 import javax.xml.registry.JAXRException ; 25 26 30 public interface EmailAddress 31 { 32 public String getAddress() throws JAXRException ; 33 public String getType() throws JAXRException ; 34 public void setAddress(String addr) throws JAXRException ; 35 public void setType(String type) throws JAXRException ; 36 } 37 | Popular Tags |