Name

Concept

Synopsis

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 ...

Get Java Web Services in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.