Package jadex.bridge
Interface IComponentIdentifier
- 
- All Known Implementing Classes:
- ComponentIdentifier
 
 public interface IComponentIdentifierInterface for component identifiers.
- 
- 
Field SummaryFields Modifier and Type Field Description static IComponentIdentifier[]EMPTY_COMPONENTIDENTIFIERSReturn value for empty arrays.static java.lang.ThreadLocal<IComponentIdentifier>LOCALThe currently executing component (if any).static java.lang.StringRESULTCIDThe constant to fetch the component id out of the results of a component.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDotName()Get the dot name.java.lang.StringgetLocalName()Get the local component name.java.lang.StringgetName()Get the component name.IComponentIdentifiergetParent()Get the parent identifier.java.lang.StringgetPlatformName()Get the platform name.java.lang.StringgetPlatformPrefix()Get the platform name without the suffix for name uniqueness.IComponentIdentifiergetRoot()Get the root identifier.booleanhasSameRoot(IComponentIdentifier cid)Test if this identifier has the same root as the cid.
 
- 
- 
- 
Field Detail- 
RESULTCIDstatic final java.lang.String RESULTCID The constant to fetch the component id out of the results of a component.- See Also:
- Constant Field Values
 
 - 
LOCALstatic final java.lang.ThreadLocal<IComponentIdentifier> LOCAL The currently executing component (if any).
 - 
EMPTY_COMPONENTIDENTIFIERSstatic final IComponentIdentifier[] EMPTY_COMPONENTIDENTIFIERS Return value for empty arrays.
 
- 
 - 
Method Detail- 
getNamejava.lang.String getName() Get the component name.- Returns:
- The name of an component.
 
 - 
getLocalNamejava.lang.String getLocalName() Get the local component name.- Returns:
- The local name of an component.
 
 - 
getPlatformNamejava.lang.String getPlatformName() Get the platform name.- Returns:
- The platform name.
 
 - 
getPlatformPrefixjava.lang.String getPlatformPrefix() Get the platform name without the suffix for name uniqueness.- Returns:
- The platform name without suffix.
 
 - 
getParentIComponentIdentifier getParent() Get the parent identifier.- Returns:
- The parent identifier (if any).
 
 - 
getRootIComponentIdentifier getRoot() Get the root identifier.- Returns:
- The root identifier.
 
 - 
getDotNamejava.lang.String getDotName() Get the dot name.- Returns:
- The dot name.
 
 - 
hasSameRootboolean hasSameRoot(IComponentIdentifier cid) Test if this identifier has the same root as the cid.- Parameters:
- cid- The component id.
- Returns:
- True, if the root is equal.
 
 
- 
 
-