Uses of Class
javax.xml.namespace.QName

Packages that use QName
javax.wsdl   
javax.wsdl.extensions   
javax.wsdl.extensions.soap   
javax.xml.namespace   
 

Uses of QName in javax.wsdl
 

Methods in javax.wsdl that return QName
 QName Service.getQName()
          Get the name of this service.
 QName PortType.getQName()
          Get the name of this port type.
 QName Part.getElementName()
           
 QName Part.getTypeName()
           
 QName Message.getQName()
          Get the name of this message.
 QName Definition.getQName()
          Get the name of this definition.
 QName Binding.getQName()
          Get the name of this binding.
 

Methods in javax.wsdl with parameters of type QName
 void Service.setQName(QName name)
          Set the name of this service.
 void PortType.setQName(QName name)
          Set the name of this port type.
 void Part.setElementName(QName elementName)
           
 void Part.setTypeName(QName typeName)
           
 void Message.setQName(QName name)
          Set the name of this message.
 void Definition.setQName(QName name)
          Set the name of this definition.
 Message Definition.getMessage(QName name)
          Get the specified message.
 Message Definition.removeMessage(QName name)
          Remove the specified message from this definition.
 Binding Definition.getBinding(QName name)
          Get the specified binding.
 Binding Definition.removeBinding(QName name)
          Remove the specified binding from this definition.
 PortType Definition.getPortType(QName name)
          Get the specified portType.
 PortType Definition.removePortType(QName name)
          Remove the specified portType from this definition.
 Service Definition.getService(QName name)
          Get the specified service.
 Service Definition.removeService(QName name)
          Remove the specified service from this definition.
 void Binding.setQName(QName name)
          Set the name of this binding.
 

Uses of QName in javax.wsdl.extensions
 

Fields in javax.wsdl.extensions declared as QName
protected  QName UnknownExtensibilityElement.elementType
           
 

Methods in javax.wsdl.extensions that return QName
 QName UnknownExtensibilityElement.getElementType()
          Get the type of this extensibility element.
 QName ExtensibilityElement.getElementType()
          Get the type of this extensibility element.
 

Methods in javax.wsdl.extensions with parameters of type QName
 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 UnknownExtensibilityElement.setElementType(QName elementType)
          Set the type of this extensibility element.
 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.
 void ExtensionRegistry.registerSerializer(java.lang.Class parentType, QName elementType, ExtensionSerializer es)
          Declare that the specified serializer should be used to serialize all extensibility elements with a qname matching elementType, when encountered as children of the specified parentType.
 void ExtensionRegistry.registerDeserializer(java.lang.Class parentType, QName elementType, ExtensionDeserializer ed)
          Declare that the specified deserializer should be used to deserialize all extensibility elements with a qname matching elementType, when encountered as immediate children of the element represented by the specified parentType.
 ExtensionSerializer ExtensionRegistry.querySerializer(java.lang.Class parentType, QName elementType)
          Look up the serializer to use for the extensibility element with the qname elementType, which was encountered as a child of the specified parentType.
 ExtensionDeserializer ExtensionRegistry.queryDeserializer(java.lang.Class parentType, QName elementType)
          Look up the deserializer for the extensibility element with the qname elementType, which was encountered as an immediate child of the element represented by the specified parentType.
 void ExtensionRegistry.mapExtensionTypes(java.lang.Class parentType, QName elementType, java.lang.Class extensionType)
          Declare that the specified extensionType is the concrete class which should be used to represent extensibility elements with qnames matching elementType, that are intended to exist as children of the specified parentType.
 ExtensibilityElement ExtensionRegistry.createExtension(java.lang.Class parentType, QName elementType)
          Create an instance of the type which was declared to be used to represent extensibility elements with qnames matching elementType, when intended to exist as children of the specified parentType.
 void ExtensionRegistry.registerExtensionAttributeType(java.lang.Class parentType, QName attrName, int attrType)
          Declare that the type of the specified extension attribute, when it occurs as an attribute of the specified parent type, should be assumed to be attrType.
 int ExtensionRegistry.queryExtensionAttributeType(java.lang.Class parentType, QName attrName)
          Look up the type of the extensibility attribute with the qname attrName, which was defined on an element represented by the specified parentType.
 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.
 void ExtensibilityElement.setElementType(QName elementType)
          Set the type of this extensibility element.
 void AttributeExtensible.setExtensionAttribute(QName name, java.lang.Object value)
          Set an extension attribute on this element.
 java.lang.Object AttributeExtensible.getExtensionAttribute(QName name)
          Retrieve an extension attribute from this element.
 

Uses of QName in javax.wsdl.extensions.soap
 

Methods in javax.wsdl.extensions.soap that return QName
 QName SOAPHeaderFault.getMessage()
          Get the message for this SOAP header fault.
 QName SOAPHeader.getMessage()
          Get the message for this SOAP header.
 

Methods in javax.wsdl.extensions.soap with parameters of type QName
 void SOAPHeaderFault.setMessage(QName message)
          Set the message for this SOAP header fault.
 void SOAPHeader.setMessage(QName message)
          Set the message for this SOAP header.
 

Uses of QName in javax.xml.namespace
 

Methods in javax.xml.namespace that return QName
static QName QName.valueOf(java.lang.String s)
          Returns a QName holding the value of the specified String.