Uses of Interface
com.sun.xml.ws.api.model.wsdl.WSDLExtension

Packages that use WSDLExtension
com.sun.xml.ws.api.model.wsdl   
com.sun.xml.ws.model.wsdl   
 

Uses of WSDLExtension in com.sun.xml.ws.api.model.wsdl
 

Methods in com.sun.xml.ws.api.model.wsdl with type parameters of type WSDLExtension
<T extends WSDLExtension>
T
WSDLExtensible.getExtension(Class<T> type)
          Gets the extension that is assignable to the given type.
<T extends WSDLExtension>
Iterable<T>
WSDLExtensible.getExtensions(Class<T> type)
          Gets all the extensions that is assignable to the given type.
 

Methods in com.sun.xml.ws.api.model.wsdl that return types with arguments of type WSDLExtension
 Iterable<WSDLExtension> WSDLExtensible.getExtensions()
          Gets all the WSDLExtensions added through WSDLExtensible.addExtension(WSDLExtension).
 

Methods in com.sun.xml.ws.api.model.wsdl with parameters of type WSDLExtension
 void WSDLExtensible.addExtension(WSDLExtension extension)
          Adds a new WSDLExtension to this object.
 

Uses of WSDLExtension in com.sun.xml.ws.model.wsdl
 

Classes in com.sun.xml.ws.model.wsdl that implement WSDLExtension
protected  class AbstractExtensibleImpl.UnknownWSDLExtension
           
 

Fields in com.sun.xml.ws.model.wsdl with type parameters of type WSDLExtension
protected  Set<WSDLExtension> AbstractExtensibleImpl.extensions
           
 

Methods in com.sun.xml.ws.model.wsdl with type parameters of type WSDLExtension
<T extends WSDLExtension>
T
AbstractExtensibleImpl.getExtension(Class<T> type)
           
<T extends WSDLExtension>
Iterable<T>
AbstractExtensibleImpl.getExtensions(Class<T> type)
           
 

Methods in com.sun.xml.ws.model.wsdl that return types with arguments of type WSDLExtension
 Iterable<WSDLExtension> AbstractExtensibleImpl.getExtensions()
           
 

Methods in com.sun.xml.ws.model.wsdl with parameters of type WSDLExtension
 void AbstractExtensibleImpl.addExtension(WSDLExtension ex)