org.eclipse.stp.core.sca
Interface ComponentType

All Superinterfaces:
SCAObject

public interface ComponentType
extends SCAObject

A representation of the model object 'Component Type'.

This interface is not intended to be implemented by clients.

The following features are supported:

See Also:
SCAPackage.getComponentType()

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.
 java.util.List getProperties()
          Returns the value of the 'Properties' containment reference list.
 Property getProperty(java.lang.String propertyName)
          Return a Property with a name matching propertyName
 Reference getReference(java.lang.String referenceName)
          Return a Reference with a name matching name.
 java.util.List getReferences()
          Returns the value of the 'References' containment reference list.
 Service getService(Interface interfaze)
          Return a Service with an Interface matching interfaze;
 Service getService(java.lang.String serviceName)
          Return a Service with a name matching name;
 java.util.List getServices()
          Returns the value of the 'Services' containment reference list.
 java.lang.Object resolveImplementation()
           
 
Methods inherited from interface org.eclipse.stp.core.sca.SCAObject
addStatus, clearStatus, getEObject, getFlags, getName, getStatus, setName
 

Field Detail

copyright

static final java.lang.String copyright

See Also:
Constant Field Values
Method Detail

getServices

java.util.List getServices()
Returns the value of the 'Services' containment reference list. The list contents are of type Service.

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

Returns:
the value of the 'Services' containment reference list.
See Also:
SCAPackage.getComponentType_Services()

getReferences

java.util.List getReferences()
Returns the value of the 'References' containment reference list. The list contents are of type Reference.

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

Returns:
the value of the 'References' containment reference list.
See Also:
SCAPackage.getComponentType_References()

getProperties

java.util.List getProperties()
Returns the value of the 'Properties' containment reference list. The list contents are of type Property.

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

Returns:
the value of the 'Properties' containment reference list.
See Also:
SCAPackage.getComponentType_Properties()

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.getComponentType_Any()

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.getComponentType_AnyAttribute()

resolveImplementation

java.lang.Object resolveImplementation()
Returns:
A resolved implementation. The client is responsible for determining the return type.

getReference

Reference getReference(java.lang.String referenceName)
Return a Reference with a name matching name.

Parameters:
referenceName - The name of the reference to search for.
Returns:
Reference

getService

Service getService(java.lang.String serviceName)
Return a Service with a name matching name;

Parameters:
serviceName - The name of the service to search for
Returns:
Service

getService

Service getService(Interface interfaze)
Return a Service with an Interface matching interfaze;

Parameters:
interfaze - The interfaze of the service to search for
Returns:
Service

getProperty

Property getProperty(java.lang.String propertyName)
Return a Property with a name matching propertyName

Parameters:
propertyName - The name of the property to search for
Returns:
The property with the given name