Interface Endpoint
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
EndpointImpl
public interface Endpoint extends org.eclipse.emf.ecore.EObject
A representation of the model object 'Endpoint'.The following features are supported:
- See Also:
WsDefinitionsPackage.getEndpoint()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDocumentation()
Returns the value of the 'Documentation' attribute.String
getName()
Returns the value of the 'Name' attribute.org.eclipse.emf.common.util.EList<Operation>
getOperations()
Returns the value of the 'Operations' containment reference list.boolean
isSoap()
Returns the value of the 'Soap' attribute.void
setDocumentation(String value)
Sets the value of the 'Documentation
' attribute.void
setName(String value)
Sets the value of the 'Name
' attribute.void
setSoap(boolean value)
Sets the value of the 'Soap
' attribute.
-
-
-
Method Detail
-
getName
String getName()
Returns the value of the 'Name' attribute.- Returns:
- the value of the 'Name' attribute.
- See Also:
setName(String)
,WsDefinitionsPackage.getEndpoint_Name()
-
setName
void setName(String value)
Sets the value of the 'Name
' attribute.- Parameters:
value
- the new value of the 'Name' attribute.- See Also:
getName()
-
getOperations
org.eclipse.emf.common.util.EList<Operation> getOperations()
Returns the value of the 'Operations' containment reference list. The list contents are of typeOperation
.- Returns:
- the value of the 'Operations' containment reference list.
- See Also:
WsDefinitionsPackage.getEndpoint_Operations()
-
getDocumentation
String getDocumentation()
Returns the value of the 'Documentation' attribute.- Returns:
- the value of the 'Documentation' attribute.
- See Also:
setDocumentation(String)
,WsDefinitionsPackage.getEndpoint_Documentation()
-
setDocumentation
void setDocumentation(String value)
Sets the value of the 'Documentation
' attribute.- Parameters:
value
- the new value of the 'Documentation' attribute.- See Also:
getDocumentation()
-
isSoap
boolean isSoap()
Returns the value of the 'Soap' attribute.- Returns:
- the value of the 'Soap' attribute.
- See Also:
setSoap(boolean)
,WsDefinitionsPackage.getEndpoint_Soap()
-
-