Interface Operation
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
OperationImpl
public interface Operation extends org.eclipse.emf.ecore.EObject
A representation of the model object 'Operation'.The following features are supported:
- See Also:
WsDefinitionsPackage.getOperation()
-
-
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<Parameter>
getParameters()
Returns the value of the 'Parameters' containment reference list.String
getRetValDoc()
Returns the value of the 'Ret Val Doc' attribute.QName
getRetValType()
Returns the value of the 'Ret Val Type' containment reference.boolean
isRetValNillable()
Returns the value of the 'Ret Val Nillable' attribute.void
setDocumentation(String value)
Sets the value of the 'Documentation
' attribute.void
setName(String value)
Sets the value of the 'Name
' attribute.void
setRetValDoc(String value)
Sets the value of the 'Ret Val Doc
' attribute.void
setRetValNillable(boolean value)
Sets the value of the 'Ret Val Nillable
' attribute.void
setRetValType(QName value)
Sets the value of the 'Ret Val Type
' containment reference.
-
-
-
Method Detail
-
getName
String getName()
Returns the value of the 'Name' attribute.- Returns:
- the value of the 'Name' attribute.
- See Also:
setName(String)
,WsDefinitionsPackage.getOperation_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()
-
getDocumentation
String getDocumentation()
Returns the value of the 'Documentation' attribute.- Returns:
- the value of the 'Documentation' attribute.
- See Also:
setDocumentation(String)
,WsDefinitionsPackage.getOperation_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()
-
isRetValNillable
boolean isRetValNillable()
Returns the value of the 'Ret Val Nillable' attribute.- Returns:
- the value of the 'Ret Val Nillable' attribute.
- See Also:
setRetValNillable(boolean)
,WsDefinitionsPackage.getOperation_RetValNillable()
-
setRetValNillable
void setRetValNillable(boolean value)
Sets the value of the 'Ret Val Nillable
' attribute.- Parameters:
value
- the new value of the 'Ret Val Nillable' attribute.- See Also:
isRetValNillable()
-
getRetValDoc
String getRetValDoc()
Returns the value of the 'Ret Val Doc' attribute.- Returns:
- the value of the 'Ret Val Doc' attribute.
- See Also:
setRetValDoc(String)
,WsDefinitionsPackage.getOperation_RetValDoc()
-
setRetValDoc
void setRetValDoc(String value)
Sets the value of the 'Ret Val Doc
' attribute.- Parameters:
value
- the new value of the 'Ret Val Doc' attribute.- See Also:
getRetValDoc()
-
getRetValType
QName getRetValType()
Returns the value of the 'Ret Val Type' containment reference.- Returns:
- the value of the 'Ret Val Type' containment reference.
- See Also:
setRetValType(QName)
,WsDefinitionsPackage.getOperation_RetValType()
-
setRetValType
void setRetValType(QName value)
Sets the value of the 'Ret Val Type
' containment reference.- Parameters:
value
- the new value of the 'Ret Val Type' containment reference.- See Also:
getRetValType()
-
getParameters
org.eclipse.emf.common.util.EList<Parameter> getParameters()
Returns the value of the 'Parameters' containment reference list. The list contents are of typeParameter
.- Returns:
- the value of the 'Parameters' containment reference list.
- See Also:
WsDefinitionsPackage.getOperation_Parameters()
-
-