Package ptolemy.actor

Examples of ptolemy.actor.AtomicActor


            if (!_componentActorTable.containsKey(intf.container)) {
                throw new InternalErrorException(
                        "Could not find the actor associated with the "
                                + "container of this interface.");
            }
            AtomicActor actor = (AtomicActor) _componentActorTable
                    .get(intf.container);
            IOPort port;
            // Check if this is an input port.
            if (intf.provided) {
                port = new IOPort(actor, intf.name, true, false);
View Full Code Here


            _ComponentFile componentFile = new _ComponentFile(component,
                    intf.location.filename);
            _componentFileTable.put(component, componentFile);

            // Create an actor to which to attach this component.
            AtomicActor actor = new AtomicActor(_compositeActor, intf.container
                    .toString());
            _componentActorTable.put(component, actor);

        } else if (_componentFileTable.containsKey(component)
                ^ _componentActorTable.containsKey(component)) {
View Full Code Here

TOP

Related Classes of ptolemy.actor.AtomicActor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.