org.eclipse.wst.wsdl
Interface ExtensibilityElement

All Superinterfaces:
WSDLElement
All Known Subinterfaces:
SOAPAddress, SOAPBinding, SOAPBody, SOAPFault, SOAPHeader, SOAPHeaderBase, SOAPHeaderFault, SOAPOperation, UnknownExtensibilityElement, XSDSchemaExtensibilityElement

public interface ExtensibilityElement
extends WSDLElement

A representation of the model object 'Extensibility Element'. This class represents a WSDL extensibility element. WSDL allows extensibility elements representing a specific technology under various elements defined by WSDL.

The following features are supported:

See Also:
org.eclipse.wsdl.WSDLPackage#getExtensibilityElement()

Method Summary
 QName getElementType()
          Returns the value of the 'Element Type' attribute.
 boolean isRequired()
          Returns the value of the 'Required' attribute.
 void setElementType(QName value)
          Sets the value of the 'Element Type' attribute.
 void setRequired(boolean value)
          Sets the value of the 'Required' attribute.
 
Methods inherited from interface org.eclipse.wst.wsdl.WSDLElement
elementChanged, getContainer, getDocumentationElement, getElement, getEnclosingDefinition, setDocumentationElement, setElement, setEnclosingDefinition, updateElement, updateElement
 

Method Detail

isRequired

public boolean isRequired()
Returns the value of the 'Required' attribute.

If the meaning of the 'Required' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Required' attribute.
See Also:
setRequired(boolean), org.eclipse.wsdl.WSDLPackage#getExtensibilityElement_Required()

setRequired

public void setRequired(boolean value)
Sets the value of the 'Required' attribute.

Parameters:
value - the new value of the 'Required' attribute.
See Also:
isRequired()

getElementType

public QName getElementType()
Returns the value of the 'Element Type' attribute.

If the meaning of the 'Element Type' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Element Type' attribute.
See Also:
setElementType(QName), org.eclipse.wsdl.WSDLPackage#getExtensibilityElement_ElementType()

setElementType

public void setElementType(QName value)
Sets the value of the 'Element Type' attribute.

Parameters:
value - the new value of the 'Element Type' attribute.
See Also:
getElementType()