June 2003
Intermediate to advanced
672 pages
23h 48m
English
Concept
public interface Concept extends RegistryObject {
// Property Accessor Methods (by property name)
public abstract int getChildConceptCount( )
throws javax.xml.registry.JAXRException; //L0
public abstract Collection getChildrenConcepts( )
throws javax.xml.registry.JAXRException; //L0
public abstract ClassificationScheme getClassificationScheme( )
throws javax.xml.registry.JAXRException; //L0
public abstract Collection getDescendantConcepts( )
throws javax.xml.registry.JAXRException; //L0
public abstract RegistryObject getParent( )
throws javax.xml.registry.JAXRException; //L0
public abstract Concept getParentConcept( )
throws javax.xml.registry.JAXRException; //L0
public abstract String getPath( )
throws javax.xml.registry.JAXRException; //L0
public abstract String getValue( )
throws javax.xml.registry.JAXRException; //L0
public abstract void setValue(String value)
throws javax.xml.registry.JAXRException; //L0
// Public Instance Methods
public abstract void addChildConcept(Concept concept)
throws javax.xml.registry.JAXRException; //L0
public abstract void addChildConcepts(Collection concepts)
throws javax.xml.registry.JAXRException; //L0
public abstract void removeChildConcept(Concept concept)
throws javax.xml.registry.JAXRException; //L0
public abstract void removeChildConcepts(Collection concepts)
throws javax.xml.registry.JAXRException; //L0
}Concepts are used in various different ways within
the JAXR API. A Concept can be thought of as a useful item that is ...
Read now
Unlock full access