Package com.sun.xml.rpc.processor.model
Class Model
- java.lang.Object
-
- com.sun.xml.rpc.processor.model.ModelObject
-
- com.sun.xml.rpc.processor.model.Model
-
- All Implemented Interfaces:
Model,ModelObject
public class Model extends ModelObject implements Model
- Author:
- JAX-RPC Development Team
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(ModelVisitor visitor)voidaddExtraType(AbstractType type)voidaddImportedDocument(ImportedDocumentInfo i)voidaddService(Service service)IteratorgetExtraTypes()SetgetExtraTypesSet()ImportedDocumentInfogetImportedDocument(String namespace)IteratorgetImportedDocuments()MapgetImportedDocumentsMap()QNamegetName()ServicegetServiceByName(QName name)IteratorgetServices()ListgetServicesList()StringgetSource()StringgetTargetNamespaceURI()voidsetExtraTypesSet(Set s)voidsetImportedDocumentsMap(Map m)voidsetName(QName n)voidsetServicesList(List l)voidsetSource(String string)voidsetTargetNamespaceURI(String s)-
Methods inherited from class com.sun.xml.rpc.processor.model.ModelObject
getProperties, getPropertiesMap, getProperty, removeProperty, setPropertiesMap, setProperty
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.sun.xml.rpc.spi.model.ModelObject
getProperty
-
-
-
-
Constructor Detail
-
Model
public Model()
-
Model
public Model(QName name)
-
-
Method Detail
-
getName
public QName getName()
-
setName
public void setName(QName n)
-
getTargetNamespaceURI
public String getTargetNamespaceURI()
-
setTargetNamespaceURI
public void setTargetNamespaceURI(String s)
-
addService
public void addService(Service service)
-
getServices
public Iterator getServices()
- Specified by:
getServicesin interfaceModel
-
getServicesList
public List getServicesList()
-
setServicesList
public void setServicesList(List l)
-
addExtraType
public void addExtraType(AbstractType type)
-
getExtraTypes
public Iterator getExtraTypes()
-
getExtraTypesSet
public Set getExtraTypesSet()
-
setExtraTypesSet
public void setExtraTypesSet(Set s)
-
getImportedDocuments
public Iterator getImportedDocuments()
-
getImportedDocument
public ImportedDocumentInfo getImportedDocument(String namespace)
-
addImportedDocument
public void addImportedDocument(ImportedDocumentInfo i)
-
getImportedDocumentsMap
public Map getImportedDocumentsMap()
-
setImportedDocumentsMap
public void setImportedDocumentsMap(Map m)
-
accept
public void accept(ModelVisitor visitor) throws Exception
- Specified by:
acceptin classModelObject- Throws:
Exception
-
getSource
public String getSource()
- Returns:
- the source of the Model
-
setSource
public void setSource(String string)
- Parameters:
string-
-
-