com.ibm.wsdl

Class BindingInputImpl

Implemented Interfaces:
BindingInput, java.io.Serializable, ElementExtensible

public class BindingInputImpl
extends java.lang.Object
implements BindingInput

This class represents an input binding. That is, it contains the information that would be specified in an input element contained within an operation element contained within a binding element.
Author:
Matthew J. Duftler

Field Summary

protected Element
docEl
protected List
extElements
protected String
name
static long
serialVersionUID

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.
String
getName()
Get the name of this input binding.
void
setDocumentationElement(Element docEl)
Set the documentation element for this document.
void
setName(String name)
Set the name of this input binding.
String
toString()

Field Details

docEl

protected Element docEl

extElements

protected List extElements

name

protected String name

serialVersionUID

public static final long serialVersionUID
Field Value:
1L

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 BindingInput
Returns:
the documentation element

getExtensibilityElements

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

getName

public String getName()
Get the name of this input binding.
Specified by:
getName in interface BindingInput
Returns:
the input binding name

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 BindingInput
Parameters:
docEl - the documentation element

setName

public void setName(String name)
Set the name of this input binding.
Specified by:
setName in interface BindingInput
Parameters:
name - the desired name

toString

public String toString()