com.ibm.wsdl

Class AbstractWSDLElement

Implemented Interfaces:
java.io.Serializable, AttributeExtensible, ElementExtensible, WSDLElement
Known Direct Subclasses:
BindingFaultImpl, BindingImpl, BindingInputImpl, BindingOperationImpl, BindingOutputImpl, DefinitionImpl, FaultImpl, ImportImpl, InputImpl, MessageImpl, OperationImpl, OutputImpl, PartImpl, PortImpl, PortTypeImpl, ServiceImpl, TypesImpl

public abstract class AbstractWSDLElement
extends java.lang.Object
implements WSDLElement

Abstract super class for all WSDL Elements, providing some basic common functionality.

Field Summary

protected Element
docEl
protected List
extElements
protected Map
extensionAttributes

Fields inherited from interface javax.wsdl.extensions.AttributeExtensible

LIST_OF_QNAMES_TYPE, LIST_OF_STRINGS_TYPE, NO_DECLARED_TYPE, QNAME_TYPE, STRING_TYPE

Method Summary

void
addExtensibilityElement(ExtensibilityElement extElement)
Add an extensibility element.
Element
getDocumentationElement()
Get the documentation element.
List
getExtensibilityElements()
Get all the extensibility elements defined here.
Object
getExtensionAttribute(QName name)
Retrieve an extension attribute from this element.
Map
getExtensionAttributes()
Get the map containing all the extension attributes defined on this element.
ExtensibilityElement
removeExtensibilityElement(ExtensibilityElement extElement)
Remove an extensibility element.
void
setDocumentationElement(Element docEl)
Set the documentation element for this document.
void
setExtensionAttribute(QName name, Object value)
Set an extension attribute on this element.
String
toString()

Field Details

docEl

protected Element docEl

extElements

protected List extElements

extensionAttributes

protected Map extensionAttributes

Method Details

addExtensibilityElement

public void addExtensibilityElement(ExtensibilityElement extElement)
Add an extensibility element.
Specified by:
addExtensibilityElement in interface ElementExtensible
Parameters:
extElement - the extensibility element to be added

getDocumentationElement

public Element getDocumentationElement()
Get the documentation element. This dependency on org.w3c.dom.Element should eventually be removed when a more appropriate way of representing this information is employed.
Specified by:
getDocumentationElement in interface WSDLElement
Returns:
the documentation element

getExtensibilityElements

public List getExtensibilityElements()
Get all the extensibility elements defined here.
Specified by:
getExtensibilityElements in interface ElementExtensible

getExtensionAttribute

public Object getExtensionAttribute(QName name)
Retrieve an extension attribute from this element. If the extension attribute is not defined, null is returned.
Specified by:
getExtensionAttribute in interface AttributeExtensible
Parameters:
name - the extension attribute name
Returns:
the value of the extension attribute, or null if it is not defined. Can be a String, a QName, a List of Strings, or a List of QNames.
See Also:
setExtensionAttribute(QName,Object), getExtensionAttributes(), ExtensionRegistry.registerExtensionAttributeType, ExtensionRegistry.queryExtensionAttributeType

getExtensionAttributes

public Map getExtensionAttributes()
Get the map containing all the extension attributes defined on this element. The keys are the qnames of the attributes.
Specified by:
getExtensionAttributes in interface AttributeExtensible
Returns:
a map containing all the extension attributes defined on this element

removeExtensibilityElement

public ExtensibilityElement removeExtensibilityElement(ExtensibilityElement extElement)
Remove an extensibility element.
Specified by:
removeExtensibilityElement in interface ElementExtensible
Parameters:
extElement - the extensibility element to be removed.
Returns:
the extensibility element which was removed.

setDocumentationElement

public void setDocumentationElement(Element docEl)
Set the documentation element for this document. This dependency on org.w3c.dom.Element should eventually be removed when a more appropriate way of representing this information is employed.
Specified by:
setDocumentationElement in interface WSDLElement
Parameters:
docEl - the documentation element

setExtensionAttribute

public void setExtensionAttribute(QName name,
                                  Object value)
Set an extension attribute on this element. Pass in a null value to remove an extension attribute.
Specified by:
setExtensionAttribute in interface AttributeExtensible
Parameters:
name - the extension attribute name
value - the extension attribute value. Can be a String, a QName, a List of Strings, or a List of QNames.
See Also:
getExtensionAttribute(QName), getExtensionAttributes(), ExtensionRegistry.registerExtensionAttributeType, ExtensionRegistry.queryExtensionAttributeType

toString

public String toString()

Copyright B) 2003,2006 IBM. All Rights Reserved.