1 22 package javax.xml.registry.infomodel; 23 24 import javax.xml.registry.JAXRException ; 25 26 30 public interface Association 31 extends RegistryObject 32 { 33 public Concept getAssociationType() throws JAXRException ; 34 public RegistryObject getSourceObject() throws JAXRException ; 35 public RegistryObject getTargetObject() throws JAXRException ; 36 public boolean isConfirmed() throws JAXRException ; 37 public boolean isConfirmedBySourceOwner() throws JAXRException ; 38 public boolean isConfirmedByTargetOwner() throws JAXRException ; 39 public boolean isExtramural() throws JAXRException ; 40 public void setAssociationType(Concept associationType) throws JAXRException ; 41 public void setSourceObject(RegistryObject srcObject) throws JAXRException ; 42 public void setTargetObject(RegistryObject targetObject) throws JAXRException ; 43 44 } 45 | Popular Tags |