org.eclipse.wst.wsdl
Interface PortType

All Superinterfaces:
WSDLElement

public interface PortType
extends WSDLElement

A representation of the model object 'Port Type'. This class represents a WSDL portType element of the WSDL specification version 1.1 and an Interface component of the WSDL specification version 1.2. A port type or Interface is a named set of abstract operations and the abstract messages involved.

The following features are supported:

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

Method Summary
 EList getEOperations()
          Returns the value of the 'EOperations' containment reference list.
 QName getQName()
          Returns the value of the 'QName' attribute.
 boolean isUndefined()
          Returns the value of the 'Undefined' attribute.
 void setQName(QName value)
          Sets the value of the 'QName' attribute.
 void setUndefined(boolean value)
          Sets the value of the 'Undefined' attribute.
 
Methods inherited from interface org.eclipse.wst.wsdl.WSDLElement
elementChanged, getContainer, getDocumentationElement, getElement, getEnclosingDefinition, setDocumentationElement, setElement, setEnclosingDefinition, updateElement, updateElement
 

Method Detail

getQName

public QName getQName()
Returns the value of the 'QName' attribute.

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

Returns:
the value of the 'QName' attribute.
See Also:
setQName(QName), org.eclipse.wsdl.WSDLPackage#getPortType_QName()

setQName

public void setQName(QName value)
Sets the value of the 'QName' attribute.

Parameters:
value - the new value of the 'QName' attribute.
See Also:
getQName()

isUndefined

public boolean isUndefined()
Returns the value of the 'Undefined' attribute.

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

Returns:
the value of the 'Undefined' attribute.
See Also:
setUndefined(boolean), org.eclipse.wsdl.WSDLPackage#getPortType_Undefined()

setUndefined

public void setUndefined(boolean value)
Sets the value of the 'Undefined' attribute.

Parameters:
value - the new value of the 'Undefined' attribute.
See Also:
isUndefined()

getEOperations

public EList getEOperations()
Returns the value of the 'EOperations' containment reference list. The list contents are of type org.eclipse.wsdl.Operation.

If the meaning of the 'EOperations' containment reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'EOperations' containment reference list.
See Also:
org.eclipse.wsdl.WSDLPackage#getPortType_EOperations()