1 22 package javax.xml.registry.infomodel; 23 24 import javax.xml.registry.JAXRException ; 25 26 30 public interface PersonName 31 { 32 public String getFirstName() throws JAXRException ; 33 public String getFullName() throws JAXRException ; 34 public String getLastName() throws JAXRException ; 35 public String getMiddleName() throws JAXRException ; 36 public void setFirstName(String firstName) throws JAXRException ; 37 public void setFullName(String fullName) throws JAXRException ; 38 public void setLastName(String lastName) throws JAXRException ; 39 public void setMiddleName(String middleName) throws JAXRException ; 40 } 41 | Popular Tags |