Class CompositeEntity
- java.lang.Object
- 
- ptolemy.kernel.util.NamedObj
- 
- ptolemy.kernel.InstantiableNamedObj
- 
- ptolemy.kernel.Entity<T>
- 
- ptolemy.kernel.ComponentEntity
- 
- ptolemy.kernel.CompositeEntity
 
 
 
 
 
- 
- All Implemented Interfaces:
- java.lang.Cloneable,- Changeable,- Debuggable,- DebugListener,- Derivable,- Instantiable,- ModelErrorHandler,- MoMLExportable,- Moveable,- Nameable
 - Direct Known Subclasses:
- CompositeActor,- Configuration,- Effigy,- EffigyFactory,- EntityLibrary,- ExceptionManagerModel,- FSMActor,- ModelDirectory,- Ontology,- OntologySolverModel,- SyntacticGraph,- Tableau,- TestCompositeEntity
 
 public class CompositeEntity extends ComponentEntity A CompositeEntity is a cluster in a clustered graph. I.e., it is a non-atomic entity, in that it can contain other entities and relations. It supports transparent ports, where, in effect, the port of a contained entity is represented by a port of this entity. Methods that "deeply" traverse the topology see right through transparent ports. It may be opaque, in which case its ports are opaque and methods that "deeply" traverse the topology do not see through them. For instance, deepEntityList() returns the opaque entities directly or indirectly contained by this entity.To add an entity or relation to this composite, call its setContainer() method with this composite as an argument. To remove it, call its setContainer() method with a null argument (or another container). The entity must be an instance of ComponentEntity and the relation of ComponentRelation or an exception is thrown. Derived classes may further constrain these to subclasses. To do that, they should override the protected methods _addEntity() and _addRelation() and the public member newRelation(). A CompositeEntity may be contained by another CompositeEntity. To set that up, call the setContainer() method of the inside entity. Derived classes may further constrain the container to be a subclass of CompositeEntity. To do this, they should override setContainer() to throw an exception. Recursive containment structures, where an entity directly or indirectly contains itself, are disallowed, and an exception is thrown on an attempt to set up such a structure. A CompositeEntity can contain instances of ComponentPort. By default these ports will be transparent, although subclasses of CompositeEntity can make them opaque by overriding the isOpaque() method to return true. Derived classes may further constrain the ports to a subclass of ComponentPort. To do this, they should override the public method newPort() to create a port of the appropriate subclass, and the protected method _addPort() to throw an exception if its argument is a port that is not of the appropriate subclass. Since contained entities implement the Instantiableinterface, some may be class definitions. If an entity is a class definition, then it is not included in the lists returned byentityList(),entityList(Class),deepEntityList(), andallAtomicEntityList(). Correspondingly, if it is not a class definition, then it is not included in the list returned byclassDefinitionList(). Contained class definitions are nonetheless required to have names distinct from contained entities that are not class definitions, and the methodgetEntity(String)will return either a class definition or an entity that is not a class definition, as long as the name matches. Note that contained entities that are class definitions cannot be connected to other entities. Moreover, they cannot be deleted as long as there are either subclasses or instances present.- Since:
- Ptolemy II 0.2
- Version:
- $Id$
- Author:
- John S. Davis II, Edward A. Lee, contributor: Christopher Brooks
- Pt.AcceptedRating:
- Green (hyzheng)
- Pt.ProposedRating:
- Green (eal)
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description protected classCompositeEntity.ContainedObjectsIteratorThis class is an iterator over all the contained objects (all instances of NamedObj).
 - 
Field SummaryFields Modifier and Type Field Description protected java.util.List<ptolemy.kernel.CompositeEntity.LinkRecord>_levelCrossingLinksLevel-crossing links within this composite for which this composite is responsible.- 
Fields inherited from class ptolemy.kernel.util.NamedObj_changeListeners, _changeLock, _changeRequests, _debugging, _debugListeners, _deferChangeRequests, _elementName, _isPersistent, _verbose, _workspace, ATTRIBUTES, CLASSNAME, COMPLETE, CONTENTS, DEEP, FULLNAME, LINKS
 
- 
 - 
Constructor SummaryConstructors Constructor Description CompositeEntity()Construct an entity in the default workspace with an empty string as its name.CompositeEntity(CompositeEntity container, java.lang.String name)Create an object with a name and a container.CompositeEntity(Workspace workspace)Construct an entity in the specified workspace with an empty string as a name.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected void_addEntity(ComponentEntity entity)Add an entity or class definition to this container.protected void_addRelation(ComponentRelation relation)Add a relation to this container.protected void_adjustDeferrals()Adjust the deferrals in this object.protected java.util.List<Decorator>_containedDecorators()Return a list of decorators contained by this object.protected void_deepOpaqueEntityList(java.util.List result)List the opaque entities that are directly or indirectly contained by this entity.protected java.lang.String_description(int detail, int indent, int bracket)Return a description of the object.protected void_exportMoMLContents(java.io.Writer output, int depth)Write a MoML description of the contents of this object, which in this class are the attributes, ports, contained relations, and contained entities, plus all links.protected void_finishedAddEntity(ComponentEntity entity)Notify this entity that the given entity has been added inside it.protected void_removeEntity(ComponentEntity entity)Remove the specified entity.protected void_removeRelation(ComponentRelation relation)Remove the specified relation.protected void_validateSettables(java.util.Collection attributesValidated)Validate attributes deeply contained by this object if they implement the Settable interface by calling their validate() method.java.util.ListallAtomicEntityList()Return a list that consists of all the atomic entities in a model.voidallowLevelCrossingConnect(boolean boole)Allow or disallow connections that are created using the connect() method to cross levels of the hierarchy.java.util.ListclassDefinitionList()List the contained class definitions in the order they were added (using their setContainer() method).java.lang.Objectclone(Workspace workspace)Clone the object into the specified workspace.ComponentRelationconnect(ComponentPort port1, ComponentPort port2)Create a new relation and use it to connect two ports.ComponentRelationconnect(ComponentPort port1, ComponentPort port2, java.lang.String relationName)Create a new relation with the specified name and use it to connect two ports.java.util.IteratorcontainedObjectsIterator()Return an iterator over contained objects.java.util.List<CompositeEntity>deepCompositeEntityList()Return a list that consists of all the transparent and opaque composite entities in a model.java.util.ListdeepEntityList()List the opaque entities that are directly or indirectly contained by this entity.java.util.EnumerationdeepGetEntities()Deprecated.Use deepEntityList() instead.java.util.ListdeepNamedObjList()List the NamedObjs that are directly or indirectly contained by this entity.java.util.ListdeepOpaqueEntityList()List the opaque entities that are directly or indirectly contained by this entity.java.util.Set<ComponentRelation>deepRelationSet()Return a set with the relations that are directly or indirectly contained by this entity.java.util.ListentityList()List the contained entities in the order they were added (using their setContainer() method).<T> java.util.List<T>entityList(java.lang.Class<T> filter)Return a list of the component entities contained by this object that are instances of the specified Java class.java.lang.StringexportLinks(int depth, java.util.Collection filter)Return a sequence of MoML link attributes that describe any link between objects (ports, entities, and relations) that are present in the filter argument.voidexportMoML(java.io.Writer output, int depth, java.lang.String name)Override the base class to initialize a data structure that can capture and then export level-crossing links deeply contained structure within.AttributegetAttribute(java.lang.String name)Get the attribute with the given name.java.util.EnumerationgetEntities()Deprecated.Use entityList() instead.ComponentEntitygetEntity(java.lang.String name)Get a contained entity by name.PortgetPort(java.lang.String name)Get a contained port by name.ComponentRelationgetRelation(java.lang.String name)Get a contained relation by name.java.util.EnumerationgetRelations()Deprecated.Use relationList() instead.booleanisAtomic()Return false since CompositeEntities are not atomic.booleanisOpaque()Return false.java.util.ListlazyAllAtomicEntityList()Lazy version ofallAtomicEntityList().java.util.ListlazyAllCompositeEntityList()Lazy version of {#link #allCompositeEntityList()}.java.util.ListlazyAllCompositeTransparentAndOpaqueEntityList()Return all the transparent and opaque composites.java.util.ListlazyClassDefinitionList()Lazy version ofclassDefinitionList().java.util.ListlazyDeepEntityList()Lazy version ofdeepEntityList().java.util.ListlazyEntityList()Lazy version ofentityList().java.util.ListlazyRelationList()Lazy version ofrelationList().ComponentRelationnewRelation(java.lang.String name)Create a new relation with the specified name, add it to the relation list, and return it.intnumberOfEntities()Return the number of contained entities, not including class definitions.intnumberOfRelations()Return the number of contained relations.intnumEntities()Deprecated.Use numberOfEntitiesintnumRelations()Deprecated.Use numberOfRelations.java.util.ListrelationList()List the relations contained by this entity.voidremoveAllEntities()Remove all contained entities and unlink them from all relations.voidremoveAllRelations()Remove all contained relations and unlink them from everything.voidsetClassDefinition(boolean isClass)Specify whether this object is a class definition.voidsetContainer(CompositeEntity container)Override the base class so that if the argument is null, all level-crossing links from inside this composite to outside this composite are removed.java.lang.Stringstatistics(java.lang.String className)Return a string describing how many actors, parameters, ports, and relations are in this CompositeEntity.java.lang.StringuniqueName(java.lang.String prefix)Return a name that is guaranteed to not be the name of any contained attribute, port, class, entity, or relation.- 
Methods inherited from class ptolemy.kernel.ComponentEntity_checkContainer, _getContainedObject, _propagateExistence, getContainer, instantiate, moveDown, moveToFirst, moveToIndex, moveToLast, moveUp, newPort, propagateExistence, setName
 - 
Methods inherited from class ptolemy.kernel.Entity_addPort, _removePort, connectedPortList, connectedPorts, connectionsChanged, getPorts, linkedRelationList, linkedRelations, portList, removeAllPorts
 - 
Methods inherited from class ptolemy.kernel.InstantiableNamedObj_setParent, getChildren, getElementName, getParent, getPrototypeList, isClassDefinition, isWithinClassDefinition
 - 
Methods inherited from class ptolemy.kernel.util.NamedObj_addAttribute, _adjustOverride, _attachText, _cloneFixAttributeFields, _copyChangeRequestList, _debug, _debug, _debug, _debug, _debug, _executeChangeRequests, _getIndentPrefix, _isMoMLSuppressed, _markContentsDerived, _notifyHierarchyListenersAfterChange, _notifyHierarchyListenersBeforeChange, _propagateValue, _removeAttribute, _splitName, _stripNumericSuffix, addChangeListener, addDebugListener, addHierarchyListener, attributeChanged, attributeDeleted, attributeList, attributeList, attributeTypeChanged, clone, decorators, deepContains, depthInHierarchy, description, description, event, executeChangeRequests, exportMoML, exportMoML, exportMoML, exportMoML, exportMoMLPlain, getAttribute, getAttributes, getChangeListeners, getClassName, getDecoratorAttribute, getDecoratorAttributes, getDerivedLevel, getDerivedList, getDisplayName, getFullName, getModelErrorHandler, getName, getName, getSource, handleModelError, isDeferringChangeRequests, isOverridden, isPersistent, lazyContainedObjectsIterator, message, notifyOfNameChange, propagateValue, propagateValues, removeAttribute, removeChangeListener, removeDebugListener, removeHierarchyListener, requestChange, setClassName, setDeferringChangeRequests, setDerivedLevel, setDisplayName, setModelErrorHandler, setPersistent, setSource, sortContainedObjects, toplevel, toString, validateSettables, workspace
 - 
Methods inherited from class java.lang.Objectequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface ptolemy.kernel.util.DerivablegetDerivedLevel, getDerivedList, propagateValue
 - 
Methods inherited from interface ptolemy.kernel.util.Nameabledescription, getDisplayName, getFullName, getName, getName
 
- 
 
- 
- 
- 
Constructor Detail- 
CompositeEntitypublic CompositeEntity() Construct an entity in the default workspace with an empty string as its name. Add the entity to the workspace directory. Increment the version number of the workspace.
 - 
CompositeEntitypublic CompositeEntity(Workspace workspace) Construct an entity in the specified workspace with an empty string as a name. You can then change the name with setName(). If the workspace argument is null, then use the default workspace. Add the entity to the workspace directory. Increment the version number of the workspace.- Parameters:
- workspace- The workspace that will list the entity.
 
 - 
CompositeEntitypublic CompositeEntity(CompositeEntity container, java.lang.String name) throws IllegalActionException, NameDuplicationException Create an object with a name and a container. The container argument must not be null, or a NullPointerException will be thrown. This entity will use the workspace of the container for synchronization and version counts. If the name argument is null, then the name is set to the empty string. Increment the version of the workspace.- Parameters:
- container- The container entity.
- name- The name of the entity.
- Throws:
- IllegalActionException- If the container is incompatible with this entity.
- NameDuplicationException- If the name coincides with an entity already in the container.
 
 
- 
 - 
Method Detail- 
allAtomicEntityListpublic java.util.List allAtomicEntityList() Return a list that consists of all the atomic entities in a model. This method differs fromdeepEntityList()in that this method looks inside opaque entities, whereas deepEntityList() does not. The returned list does not include any entities that are class definitions.- Returns:
- a List of all atomic entities in the model.
 
 - 
allowLevelCrossingConnectpublic void allowLevelCrossingConnect(boolean boole) Allow or disallow connections that are created using the connect() method to cross levels of the hierarchy. The default is that such connections are disallowed. Generally it is a bad idea to allow level-crossing connections, since it breaks modularity. This loss of modularity means, among other things, that this composite cannot be cloned. Nonetheless, this capability is provided for the benefit of users that feel they just must have it, and who are willing to sacrifice clonability and modularity.- Parameters:
- boole- True to allow level-crossing connections.
 
 - 
classDefinitionListpublic java.util.List classDefinitionList() List the contained class definitions in the order they were added (using their setContainer() method). The returned list does not include any entities that are not class definitions. The returned list is static in the sense that it is not affected by any subsequent additions or removals of class definitions. This method is read-synchronized on the workspace.- Returns:
- A list of ComponentEntity objects.
- See Also:
- entityList()
 
 - 
clonepublic java.lang.Object clone(Workspace workspace) throws java.lang.CloneNotSupportedException Clone the object into the specified workspace. The new object is not added to the directory of that workspace (you must do this yourself if you want it there). This method gets read access on the workspace associated with this object.- Overrides:
- clonein class- ComponentEntity
- Parameters:
- workspace- The workspace for the cloned object.
- Returns:
- A new CompositeEntity.
- Throws:
- java.lang.CloneNotSupportedException- If one of the attributes cannot be cloned.
- See Also:
- NamedObj.exportMoML(Writer, int, String),- NamedObj.setDeferringChangeRequests(boolean)
 
 - 
connectpublic ComponentRelation connect(ComponentPort port1, ComponentPort port2) throws IllegalActionException Create a new relation and use it to connect two ports. It creates a new relation using newRelation() with an automatically generated name and uses it to link the specified ports. The order of the ports determines the order in which the links to the relation are established, but otherwise has no importance. The name is of the form "_Ri" where i is an integer. Level-crossing connections are not permitted unless allowLevelCrossingConnect() has been called with a true argument. Note that is rarely a good idea to permit level crossing connections, since they break modularity and cloning. A reference to the newly created relation is returned. To remove the relation, call its setContainer() method with a null argument. This method is write-synchronized on the workspace and increments its version number.Note that if this method is being called many times, then it may be more efficient to use connect(ComponentPort, ComponentPort, String)instead of this method because this method callsuniqueName(String)each time, which searches the object for attributes, ports, entities and relations that may match a candidate unique name.- Parameters:
- port1- The first port to connect.
- port2- The second port to connect.
- Returns:
- The ComponentRelation that is created to connect port1 and port2.
- Throws:
- IllegalActionException- If one of the arguments is null, or if a disallowed level-crossing connection would result.
 
 - 
connectpublic ComponentRelation connect(ComponentPort port1, ComponentPort port2, java.lang.String relationName) throws IllegalActionException, NameDuplicationException Create a new relation with the specified name and use it to connect two ports. Level-crossing connections are not permitted unless allowLevelCrossingConnect() has been called with a true argument. Note that is rarely a good idea to permit level crossing connections, since they break modularity and cloning. A reference to the newly created alias relation is returned. To remove the relation, call its setContainer() method with a null argument. This method is write-synchronized on the workspace and increments its version number.- Parameters:
- port1- The first port to connect.
- port2- The second port to connect.
- relationName- The name of the new relation.
- Returns:
- The ComponentRelation that is created to connect port1 and port2.
- Throws:
- IllegalActionException- If one of the arguments is null, or if a disallowed level-crossing connection would result, or if the two ports are not in the same workspace as this entity.
- NameDuplicationException- If there is already a relation with the specified name in this entity.
 
 - 
containedObjectsIteratorpublic java.util.Iterator containedObjectsIterator() Return an iterator over contained objects. In this class, this is an iterator over attributes, ports, classes, entities, and relations.- Overrides:
- containedObjectsIteratorin class- Entity
- Returns:
- An iterator over instances of NamedObj contained by this object.
 
 - 
deepCompositeEntityListpublic java.util.List<CompositeEntity> deepCompositeEntityList() Return a list that consists of all the transparent and opaque composite entities in a model. This method differs fromallAtomicEntityList()in that this method returns CompositeEntities and allAtomicEntityList() returns atomic entities. This method differs fromdeepEntityList()in that this method returns only opaque and transparent CompositeEntities, whereas deepEntityList() returns opaque ComponentEntities. The returned list of this method does not include any entities that are class definitions. TheentityList(Class)method only returns entities in the current level, this method traverses the hierarchy.- Returns:
- a List of all transparent and opaque composite entities in the model. A transparent composite is a composite that does not contain a director. An opaque composite is a composite that does contain a director. Note that class definitions are also returned.
 
 - 
deepOpaqueEntityListpublic java.util.List deepOpaqueEntityList() List the opaque entities that are directly or indirectly contained by this entity. The list will be empty if there are no such contained entities. This list does not include class definitions nor anything contained by them. This method is read-synchronized on the workspace.- Returns:
- A list of opaque ComponentEntity objects.
- See Also:
- classDefinitionList(),- allAtomicEntityList()
 
 - 
deepEntityListpublic java.util.List deepEntityList() List the opaque entities that are directly or indirectly contained by this entity. The list will be empty if there are no such contained entities. This list does not include class definitions nor anything contained by them. This method is read-synchronized on the workspace.- Returns:
- A list of opaque ComponentEntity objects.
- See Also:
- classDefinitionList(),- allAtomicEntityList()
 
 - 
deepNamedObjListpublic java.util.List deepNamedObjList() List the NamedObjs that are directly or indirectly contained by this entity. The list will be empty if there are no such contained NamedObjs. This list does not include class definitions nor anything contained by them. This method is read-synchronized on the workspace. This method differs from deepEntityList() in that deepEntityList() does not look inside opaques.- Returns:
- A list of opaque ComponentEntity objects.
- See Also:
- classDefinitionList(),- allAtomicEntityList()
 
 - 
deepRelationSetpublic java.util.Set<ComponentRelation> deepRelationSet() Return a set with the relations that are directly or indirectly contained by this entity. The set will be empty if there are no such contained relations. This method is read-synchronized on the workspace.- Returns:
- A set of ComponentRelation objects.
 
 - 
deepGetEntities@Deprecated public java.util.Enumeration deepGetEntities() Deprecated.Use deepEntityList() instead.Enumerate the opaque entities that are directly or indirectly contained by this entity. The enumeration will be empty if there are no such contained entities. The enumeration does not include any entities that are class definitions. This method is read-synchronized on the workspace.- Returns:
- An enumeration of opaque ComponentEntity objects.
 
 - 
entityListpublic java.util.List entityList() List the contained entities in the order they were added (using their setContainer() method). The returned list does not include any class definitions. The returned list is static in the sense that it is not affected by any subsequent additions or removals of entities. This method is read-synchronized on the workspace.- Returns:
- A list of ComponentEntity objects.
- See Also:
- classDefinitionList()
 
 - 
entityListpublic <T> java.util.List<T> entityList(java.lang.Class<T> filter) Return a list of the component entities contained by this object that are instances of the specified Java class. If there are no such instances, then return an empty list. The returned list does not include class definitions. This method is read-synchronized on the workspace.- Type Parameters:
- T- The type corresponding to the class of interest.
- Parameters:
- filter- The class of ComponentEntity of interest.
- Returns:
- A list of instances of specified class.
- See Also:
- classDefinitionList()
 
 - 
exportLinkspublic java.lang.String exportLinks(int depth, java.util.Collection filter) throws java.io.IOExceptionReturn a sequence of MoML link attributes that describe any link between objects (ports, entities, and relations) that are present in the filter argument. Both ends of the link must be present in filter for MoML to be generated for that link. The filter argument normally contains ports, relations, and entities that are contained by this composite entity. If it contains an entity, then that is equivalent to containing all the ports contained by that entity. It is recommended to use a collection class (such as HashSet) for which the contains() method is efficient.If the filter argument is null, then return all the links that this composite is responsible for (i.e., apply no filtering). If the argument is an empty collection, then return none of the links. The links that this entity is responsible for are the inside links of its ports, and links on ports contained by contained entities. If any link is found where both ends of the link are inherited objects, then that link is not exported. It is assumed that the base class will export that link. For this purpose, a port of a contained entity is deemed to be an inherited object if it is itself a class element and its container is an inherited object. - Parameters:
- depth- The depth below the MoML export in the hierarchy.
- filter- A collection of ports, parameters, and entities, or null to apply no filtering.
- Returns:
- A string that describes the links present in the filter.
- Throws:
- java.io.IOException- If an I/O error occurs.
 
 - 
exportMoMLpublic void exportMoML(java.io.Writer output, int depth, java.lang.String name) throws java.io.IOExceptionOverride the base class to initialize a data structure that can capture and then export level-crossing links deeply contained structure within. Otherwise, this delegates to the base class to do all the work.- Specified by:
- exportMoMLin interface- MoMLExportable
- Overrides:
- exportMoMLin class- InstantiableNamedObj
- Parameters:
- output- The output stream to write to.
- depth- The depth in the hierarchy, to determine indenting.
- name- The name to use in the exported MoML.
- Throws:
- java.io.IOException- If an I/O error occurs.
- See Also:
- MoMLExportable
 
 - 
getAttributepublic Attribute getAttribute(java.lang.String name) Get the attribute with the given name. The name may be compound, with fields separated by periods, in which case the attribute returned is contained by a (deeply) contained attribute, port, relation, or entity. If the name contains one or more periods, then it is assumed to be the relative name of an attribute contained by one of the contained attributes, ports, entities or relations. This method is read-synchronized on the workspace.- Overrides:
- getAttributein class- Entity
- Parameters:
- name- The name of the desired attribute.
- Returns:
- The requested attribute if it is found, null otherwise.
 
 - 
getEntities@Deprecated public java.util.Enumeration getEntities() Deprecated.Use entityList() instead.Enumerate the contained entities in the order they were added (using their setContainer() method). The returned enumeration is static in the sense that it is not affected by any subsequent additions or removals of entities. This method is read-synchronized on the workspace.- Returns:
- An enumeration of ComponentEntity objects.
 
 - 
getEntitypublic ComponentEntity getEntity(java.lang.String name) Get a contained entity by name. The name may be compound, with fields separated by periods, in which case the entity returned is contained by a (deeply) contained entity. This method will return class definitions and ordinary entities. This method is read-synchronized on the workspace.- Parameters:
- name- The name of the desired entity.
- Returns:
- An entity with the specified name, or null if none exists.
 
 - 
getPortpublic Port getPort(java.lang.String name) Get a contained port by name. The name may be compound, with fields separated by periods, in which case the port returned is contained by a (deeply) contained entity. This method is read-synchronized on the workspace.
 - 
getRelationpublic ComponentRelation getRelation(java.lang.String name) Get a contained relation by name. The name may be compound, with fields separated by periods, in which case the relation returned is contained by a (deeply) contained entity. This method is read-synchronized on the workspace.- Parameters:
- name- The name of the desired relation.
- Returns:
- A relation with the specified name, or null if none exists.
 
 - 
getRelations@Deprecated public java.util.Enumeration getRelations() Deprecated.Use relationList() instead.Enumerate the relations contained by this entity. The returned enumeration is static in the sense that it is not affected by any subsequent additions or removals of relations. This method is read-synchronized on the workspace.- Returns:
- An enumeration of ComponentRelation objects.
 
 - 
isAtomicpublic final boolean isAtomic() Return false since CompositeEntities are not atomic. Note that this will return false even if there are no contained entities or relations. Derived classes may not override this. To hide the contents of the entity, they should override isOpaque().- Overrides:
- isAtomicin class- ComponentEntity
- Returns:
- False.
- See Also:
- CompositeEntity
 
 - 
isOpaquepublic boolean isOpaque() Return false. Derived classes may return true in order to hide their components behind opaque ports.- Overrides:
- isOpaquein class- ComponentEntity
- Returns:
- True if the entity is opaque.
- See Also:
- CompositeEntity
 
 - 
lazyAllAtomicEntityListpublic java.util.List lazyAllAtomicEntityList() Lazy version ofallAtomicEntityList(). In this base class, this is identical to allAtomicEntityList(), except that if any inside entities are lazy, their contents are listed lazily. Derived classes may omit from the returned list any entities whose instantiation is deferred.- Returns:
- A list of ComponentEntity objects.
 
 - 
lazyAllCompositeEntityListpublic java.util.List lazyAllCompositeEntityList() Lazy version of {#link #allCompositeEntityList()}. In this base class, this is identical to allCompositeEntityList(), except that if any contained composite is lazy, its contents are listed lazily. Derived classes may omit from the returned list any class definitions whose instantiation is deferred.- Returns:
- A list of transparent ComponentEntity objects.
 
 - 
lazyAllCompositeTransparentAndOpaqueEntityListpublic java.util.List lazyAllCompositeTransparentAndOpaqueEntityList() Return all the transparent and opaque composites. In this base class, if any contained composite is lazy, its contents are listed lazily. Derived classes may omit from the returned list any class definitions whose instantiation is deferred.- Returns:
- A list of transparent ComponentEntity objects.
 
 - 
lazyClassDefinitionListpublic java.util.List lazyClassDefinitionList() Lazy version ofclassDefinitionList(). In this base class, this is identical to classDefinitionList(), but derived classes may omit from the returned list any class definitions whose instantiation is deferred.- Returns:
- A list of ComponentEntity objects.
 
 - 
lazyDeepEntityListpublic java.util.List lazyDeepEntityList() Lazy version ofdeepEntityList(). In this base class, this is identical to deepEntityList(), except that if any contained composite is lazy, its contents are listed lazily. Derived classes may omit from the returned list any entities whose instantiation is deferred.- Returns:
- A list of ComponentEntity objects.
 
 - 
lazyEntityListpublic java.util.List lazyEntityList() Lazy version ofentityList(). In this base class, this is identical to entityList(), but derived classes may omit from the returned list any entities whose instantiation is deferred.- Returns:
- A list of ComponentEntity objects.
 
 - 
lazyRelationListpublic java.util.List lazyRelationList() Lazy version ofrelationList(). In this base class, this is identical to relationList(), but derived classes may omit from the returned list any relations whose instantiation is deferred.- Returns:
- A list of Relation objects.
 
 - 
newRelationpublic ComponentRelation newRelation(java.lang.String name) throws IllegalActionException, NameDuplicationException Create a new relation with the specified name, add it to the relation list, and return it. Derived classes can override this to create domain-specific subclasses of ComponentRelation. This method is write-synchronized on the workspace and increments its version number.- Parameters:
- name- The name of the new relation.
- Returns:
- The new relation.
- Throws:
- IllegalActionException- If name argument is null.
- NameDuplicationException- If name collides with a name already in the container.
 
 - 
numEntities@Deprecated public int numEntities() Deprecated.Use numberOfEntitiesReturn the number of contained entities, not including class definitions. This method is read-synchronized on the workspace.- Returns:
- The number of entities.
- See Also:
- numberOfEntities()
 
 - 
numRelations@Deprecated public int numRelations() Deprecated.Use numberOfRelations.Return the number of contained relations. This method is read-synchronized on the workspace.- Returns:
- The number of relations.
 
 - 
numberOfEntitiespublic int numberOfEntities() Return the number of contained entities, not including class definitions. This method is read-synchronized on the workspace.- Returns:
- The number of entities.
 
 - 
numberOfRelationspublic int numberOfRelations() Return the number of contained relations. This method is read-synchronized on the workspace.- Returns:
- The number of relations.
 
 - 
relationListpublic java.util.List relationList() List the relations contained by this entity. The returned list is static in the sense that it is not affected by any subsequent additions or removals of relations. This method is read-synchronized on the workspace.- Returns:
- An unmodifiable list of ComponentRelation objects.
 
 - 
removeAllEntitiespublic void removeAllEntities() Remove all contained entities and unlink them from all relations. This is done by setting their containers to null. This method is read-synchronized on the workspace and increments its version number.
 - 
removeAllRelationspublic void removeAllRelations() Remove all contained relations and unlink them from everything. This is done by setting their containers to null. This method is write-synchronized on the workspace and increments its version number.
 - 
setClassDefinitionpublic void setClassDefinition(boolean isClass) throws IllegalActionExceptionSpecify whether this object is a class definition. If the argument is true and this entity is not a class definition, then all level crossing relations that This method overrides the base class to check that if the argument is true, then this entity contains no ports with links. This method is write synchronized on the workspace.- Overrides:
- setClassDefinitionin class- Entity
- Parameters:
- isClass- True to make this object a class definition.
- Throws:
- IllegalActionException- If the argument is true and this entity contains ports with links.
- See Also:
- InstantiableNamedObj.isClassDefinition(),- Instantiable
 
 - 
setContainerpublic void setContainer(CompositeEntity container) throws IllegalActionException, NameDuplicationException Override the base class so that if the argument is null, all level-crossing links from inside this composite to outside this composite are removed.- Overrides:
- setContainerin class- ComponentEntity
- Parameters:
- container- The proposed container.
- Throws:
- IllegalActionException- If the action would result in a recursive containment structure, or if this entity and container are not in the same workspace, or if the protected method _checkContainer() throws it, or if a contained Settable becomes invalid and the error handler throws it.
- NameDuplicationException- If the name of this entity collides with a name already in the container.
- See Also:
- ComponentEntity.getContainer()
 
 - 
statisticspublic java.lang.String statistics(java.lang.String className) throws IllegalActionExceptionReturn a string describing how many actors, parameters, ports, and relations are in this CompositeEntity. Entities whose instantiation is deferred are not included.- Parameters:
- className- If non-null and non-empty, then also include the number of objects with the give name.
- Returns:
- a string describing the number of components.
- Throws:
- IllegalActionException- If the class named by actorClassName cannot be found.
 
 - 
uniqueNamepublic java.lang.String uniqueName(java.lang.String prefix) Return a name that is guaranteed to not be the name of any contained attribute, port, class, entity, or relation. In this implementation, the argument is stripped of any numeric suffix, and then a numeric suffix is appended and incremented until a name is found that does not conflict with a contained attribute, port, class, entity, or relation. If this composite entity or any composite entity that it contains defers its MoML definition (i.e., it is an instance of a class or a subclass), then the prefix gets appended with "_n_", where n is the depth of this deferral. That is, if the object deferred to also defers, then n is incremented.Note that this method should be called judiciously from when the CompositeEntity is large. The reason is that this method searches for matching attributes, ports, classes, entities and relations, which can result in slow performance. - Overrides:
- uniqueNamein class- Entity
- Parameters:
- prefix- A prefix for the name.
- Returns:
- A unique name.
 
 - 
_addEntityprotected void _addEntity(ComponentEntity entity) throws IllegalActionException, NameDuplicationException Add an entity or class definition to this container. This method should not be used directly. Call the setContainer() method of the entity instead. This method does not set the container of the entity to point to this composite entity. It assumes that the entity is in the same workspace as this container, but does not check. The caller should check. Derived classes may override this method to constrain the the entity to a subclass of ComponentEntity. This method is not synchronized on the workspace, so the caller should be.- Parameters:
- entity- Entity to contain.
- Throws:
- IllegalActionException- If the entity has no name, or the action would result in a recursive containment structure.
- NameDuplicationException- If the name collides with a name already in the entity.
 
 - 
_addRelationprotected void _addRelation(ComponentRelation relation) throws IllegalActionException, NameDuplicationException Add a relation to this container. This method should not be used directly. Call the setContainer() method of the relation instead. This method does not set the container of the relation to refer to this container. This method is not synchronized on the workspace, so the caller should be.- Parameters:
- relation- Relation to contain.
- Throws:
- IllegalActionException- If the relation has no name.
- NameDuplicationException- If the name collides with a name already on the contained relations list.
 
 - 
_adjustDeferralsprotected void _adjustDeferrals() throws IllegalActionExceptionAdjust the deferrals in this object. This method should be called on any newly created object that is created by cloning. While cloning, parent relations are set to null. That is, no object in the clone has a parent. This method identifies the correct parent for any object in the clone. To do this, it uses the class name. Specifically, if this object has a class name that refers to a class in scope, then it replaces the current parent with that object. To look for a class in scope, we go up the hierarchy, but no more times than the return value of getDerivedLevel(). The reason for this is that if the class from which this object is defined is above that level, then we do not want to establish a parent relationship with that class. This object is implied, and the parent relationship of the object from which it is implied is sufficient.Derived classes that contain other objects should recursively call this method on contained objects. - Overrides:
- _adjustDeferralsin class- ComponentEntity
- Throws:
- IllegalActionException- If the class found in scope cannot be set.
 
 - 
_containedDecoratorsprotected java.util.List<Decorator> _containedDecorators() Return a list of decorators contained by this object. This overrides the base class to include not only attributes that implement theDecoratorinterface, but also entities.- Overrides:
- _containedDecoratorsin class- NamedObj
- Returns:
- A list of contained decorators.
 
 - 
_deepOpaqueEntityListprotected void _deepOpaqueEntityList(java.util.List result) List the opaque entities that are directly or indirectly contained by this entity. The list will be empty if there are no such contained entities. This list does not include class definitions nor anything contained by them. This method is not read-synchronized on the workspace, its caller should be read-synchronized.- Parameters:
- result- The list of opaque ComponentEntity objects.
- See Also:
- classDefinitionList(),- allAtomicEntityList(),- deepEntityList()
 
 - 
_descriptionprotected java.lang.String _description(int detail, int indent, int bracket) throws IllegalActionExceptionReturn a description of the object. The level of detail depends on the argument, which is an or-ing of the static final constants defined in the NamedObj class. Lines are indented according to to the level argument using the protected method _getIndentPrefix(). Zero, one or two brackets can be specified to surround the returned description. If one is specified it is the the leading bracket. This is used by derived classes that will append to the description. Those derived classes are responsible for the closing bracket. An argument other than 0, 1, or 2 is taken to be equivalent to 0. This method is read-synchronized on the workspace.- Overrides:
- _descriptionin class- Entity
- Parameters:
- detail- The level of detail.
- indent- The amount of indenting.
- bracket- The number of surrounding brackets (0, 1, or 2).
- Returns:
- A description of the object.
- Throws:
- IllegalActionException- If thrown while getting the description of subcomponents.
 
 - 
_exportMoMLContentsprotected void _exportMoMLContents(java.io.Writer output, int depth) throws java.io.IOExceptionWrite a MoML description of the contents of this object, which in this class are the attributes, ports, contained relations, and contained entities, plus all links. The links are written in an order that respects the ordering in ports, but not necessarily the ordering in relations. This method is called by exportMoML(). Each description is indented according to the specified depth and terminated with a newline character.- Overrides:
- _exportMoMLContentsin class- Entity
- Parameters:
- output- The output to write to.
- depth- The depth in the hierarchy, to determine indenting.
- Throws:
- java.io.IOException- If an I/O error occurs.
- See Also:
- NamedObj.exportMoML(Writer, int)
 
 - 
_finishedAddEntityprotected void _finishedAddEntity(ComponentEntity entity) Notify this entity that the given entity has been added inside it. This base class does nothing. Derived classes may override it to do something useful in responds to the notification. It is not synchronized on the workspace, so the caller should be.- Parameters:
- entity- The contained entity.
 
 - 
_removeEntityprotected void _removeEntity(ComponentEntity entity) Remove the specified entity. This method should not be used directly. Call the setContainer() method of the entity instead with a null argument. The entity is assumed to be contained by this composite (otherwise, nothing happens). This does not alter the entity in any way. This method is not synchronized on the workspace, so the caller should be.- Parameters:
- entity- The entity to remove.
 
 - 
_removeRelationprotected void _removeRelation(ComponentRelation relation) Remove the specified relation. This method should not be used directly. Call the setContainer() method of the relation instead with a null argument. The relation is assumed to be contained by this composite (otherwise, nothing happens). This does not alter the relation in any way. This method is not synchronized on the workspace, so the caller should be.- Parameters:
- relation- The relation to remove.
 
 - 
_validateSettablesprotected void _validateSettables(java.util.Collection attributesValidated) throws IllegalActionExceptionValidate attributes deeply contained by this object if they implement the Settable interface by calling their validate() method. This method overrides the base class to check attributes contained by the contained entities and relations. Errors that are triggered by this validation are handled by calling handleModelError().- Overrides:
- _validateSettablesin class- Entity
- Parameters:
- attributesValidated- A HashSet of Attributes that have already been validated. For example, Settables that implement the SharedSettable interface are validated only once.
- Throws:
- IllegalActionException- If the superclass throws it or if handleModelError() throws it.
- See Also:
- NamedObj.handleModelError(NamedObj, IllegalActionException)
 
 
- 
 
-