Uses of Interface
javax.wsdl.Definition

Packages that use Definition
javax.wsdl   
javax.wsdl.extensions   
javax.wsdl.factory   
javax.wsdl.xml   
 

Uses of Definition in javax.wsdl
 

Methods in javax.wsdl that return Definition
 Definition Import.getDefinition()
          This property can be used to hang a referenced Definition, and the top-level Definition (i.e. the one with the <import>) will use this Definition when resolving referenced WSDL parts.
 

Methods in javax.wsdl with parameters of type Definition
 void Import.setDefinition(Definition definition)
          This property can be used to hang a referenced Definition, and the top-level Definition (i.e. the one with the <import>) will use this Definition when resolving referenced WSDL parts.
 

Uses of Definition in javax.wsdl.extensions
 

Methods in javax.wsdl.extensions with parameters of type Definition
 void UnknownExtensionSerializer.marshall(java.lang.Class parentType, QName elementType, ExtensibilityElement extension, java.io.PrintWriter pw, Definition def, ExtensionRegistry extReg)
           
 ExtensibilityElement UnknownExtensionDeserializer.unmarshall(java.lang.Class parentType, QName elementType, org.w3c.dom.Element el, Definition def, ExtensionRegistry extReg)
           
 void ExtensionSerializer.marshall(java.lang.Class parentType, QName elementType, ExtensibilityElement extension, java.io.PrintWriter pw, Definition def, ExtensionRegistry extReg)
          This method serializes extension-specific instances of ExtensibilityElement into the PrintWriter.
 ExtensibilityElement ExtensionDeserializer.unmarshall(java.lang.Class parentType, QName elementType, org.w3c.dom.Element el, Definition def, ExtensionRegistry extReg)
          This method deserializes elements into instances of classes which implement the ExtensibilityElement interface.
 

Uses of Definition in javax.wsdl.factory
 

Methods in javax.wsdl.factory that return Definition
abstract  Definition WSDLFactory.newDefinition()
          Create a new instance of a Definition.
 

Uses of Definition in javax.wsdl.xml
 

Methods in javax.wsdl.xml that return Definition
 Definition WSDLReader.readWSDL(java.lang.String wsdlURI)
          Read the WSDL document accessible via the specified URI into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String contextURI, java.lang.String wsdlURI)
          Read the WSDL document accessible via the specified URI into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String documentBaseURI, org.w3c.dom.Element definitionsElement)
          Read the specified <wsdl:definitions> element into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String documentBaseURI, org.w3c.dom.Document wsdlDocument)
          Read the specified WSDL document into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String documentBaseURI, org.xml.sax.InputSource inputSource)
          Read a WSDL document into a WSDL definition.
 Definition WSDLReader.readWSDL(WSDLLocator locator)
          Read a WSDL document into a WSDL definition.
 

Methods in javax.wsdl.xml with parameters of type Definition
 org.w3c.dom.Document WSDLWriter.getDocument(Definition wsdlDef)
          Return a document generated from the specified WSDL model.
 void WSDLWriter.writeWSDL(Definition wsdlDef, java.io.Writer sink)
          Write the specified WSDL definition to the specified Writer.
 void WSDLWriter.writeWSDL(Definition wsdlDef, java.io.OutputStream sink)
          Write the specified WSDL definition to the specified OutputStream.