Uses of Interface
javax.xml.registry.infomodel.Concept

Packages that use Concept
javax.xml.registry This package and its sub-packages describe the API classes and interfaces for the JAXR API. 
javax.xml.registry.infomodel This package describes the information model for JAXR API. 
 

Uses of Concept in javax.xml.registry
 

Methods in javax.xml.registry that return Concept
 Concept LifeCycleManager.createConcept(RegistryObject parent, java.lang.String name, java.lang.String value)
          Creates a Concept instance using the specified parameters, where the name is a String.
 Concept LifeCycleManager.createConcept(RegistryObject parent, InternationalString name, java.lang.String value)
          Creates a Concept instance using the specified parameters, where the name is an InternationalString.
 Concept BusinessQueryManager.findConceptByPath(java.lang.String path)
          Finds a Concept based on the path specified.
 

Methods in javax.xml.registry with parameters of type Concept
 Association LifeCycleManager.createAssociation(RegistryObject targetObject, Concept associationType)
          Creates an Association instance using the specified parameters.
 Classification LifeCycleManager.createClassification(Concept concept)
          Creates a Classification instance for an internal Classification using the specified Concept that identifies a taxonomy element within an internal ClassificationScheme.
 ClassificationScheme LifeCycleManager.createClassificationScheme(Concept concept)
          Creates a ClassificationScheme from a Concept that has no ClassificationScheme or parent Concept.
 

Uses of Concept in javax.xml.registry.infomodel
 

Methods in javax.xml.registry.infomodel that return Concept
 Concept Classification.getConcept()
          Gets the Concept that is classifying the object.
 Concept Concept.getParentConcept()
          Get the parent Concept or null if parent is a ClassificationScheme.
 Concept Association.getAssociationType()
          Gets the association type for this Association.
 Concept RegistryObject.getObjectType()
          Gets the object type that best describes the RegistryObject.
 

Methods in javax.xml.registry.infomodel with parameters of type Concept
 void Classification.setConcept(Concept concept)
          Sets the concept for this internal classification.
 void Concept.addChildConcept(Concept concept)
          Add a child Concept
 void Concept.removeChildConcept(Concept concept)
          Remove a child Concept
 void Association.setAssociationType(Concept associationType)
          Sets the association type for this Association.
 void ClassificationScheme.addChildConcept(Concept concept)
          Add a child Concept
 void ClassificationScheme.removeChildConcept(Concept concept)
          Remove a child Concept