org.eclipse.stp.core.sca
Interface Service

All Superinterfaces:
AbstractService, SCAObject
All Known Subinterfaces:
ModuleService

public interface Service
extends SCAObject, AbstractService

A representation of the model object 'Service'.

This interface is not intended to be implemented by clients.

The following features are supported:

See Also:
SCAPackage.getService()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 FeatureMap getAny()
          Returns the value of the 'Any' attribute list.
 FeatureMap getAnyAttribute()
          Returns the value of the 'Any Attribute' attribute list.
 Interface getInterface()
          The interface used by this object is likely to be an implementation-specific substitution group.
 java.lang.String getName()
          Returns the value of the 'Name' attribute.
 void setInterface(Interface newInterface)
          The interface used by this object is likely to be an implementation-specific substitution group.
 void setName(java.lang.String value)
          Sets the value of the 'Name' attribute.
 
Methods inherited from interface org.eclipse.stp.core.sca.AbstractService
matches
 

Field Detail

copyright

static final java.lang.String copyright

See Also:
Constant Field Values
Method Detail

getAny

FeatureMap getAny()
Returns the value of the 'Any' attribute list. The list contents are of type org.eclipse.emf.ecore.util.FeatureMap.Entry.

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

Returns:
the value of the 'Any' attribute list.
See Also:
SCAPackage.getService_Any()

getName

java.lang.String getName()
Returns the value of the 'Name' attribute.

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

Specified by:
getName in interface SCAObject
Returns:
the value of the 'Name' attribute.
See Also:
setName(String), SCAPackage.getService_Name()

setName

void setName(java.lang.String value)
Sets the value of the 'Name' attribute.

Specified by:
setName in interface SCAObject
Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()

getAnyAttribute

FeatureMap getAnyAttribute()
Returns the value of the 'Any Attribute' attribute list. The list contents are of type org.eclipse.emf.ecore.util.FeatureMap.Entry.

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

Returns:
the value of the 'Any Attribute' attribute list.
See Also:
SCAPackage.getService_AnyAttribute()

getInterface

Interface getInterface()
The interface used by this object is likely to be an implementation-specific substitution group. This means that it is sometimes necessary to know the corresponding org.eclipse.emf.ecore.EStructuralFeature when using this Interface, particularly when saving the underlying XML. Clients should use FeatureAdapter.setFeature(SCAObject, EStructuralFeature) or FeatureAdapter.getFeature(SCAObject).

Specified by:
getInterface in interface AbstractService
Returns:
The Interface for this Service.
See Also:
FeatureAdapter, FeatureAdapter.getFeature(SCAObject)

setInterface

void setInterface(Interface newInterface)
The interface used by this object is likely to be an implementation-specific substitution group. This means that it is sometimes necessary to know the corresponding org.eclipse.emf.ecore.EStructuralFeature when using this Interface, particularly when saving the underlying XML. Clients should use FeatureAdapter.setFeature(SCAObject, EStructuralFeature) or FeatureAdapter.getFeature(SCAObject).

Parameters:
newInterface - The Interface for this Service. Clients are required to set the correct feature before calling this method.
See Also:
FeatureAdapter, FeatureAdapter.setFeature(SCAObject, EStructuralFeature)