Package ptolemy.actor

Examples of ptolemy.actor.TypedCompositeActor.outputPortList()


    private void _buildOutputPortTable() throws IllegalActionException {
        TypedCompositeActor container = (TypedCompositeActor) getContainer();

        _shouldTransferOutputs = new HashMap();

        Iterator outports = container.outputPortList().iterator();

        while (outports.hasNext()) {
            IOPort port = (IOPort) outports.next();

            _shouldTransferOutputs.put(port, Boolean.TRUE);
View Full Code Here


            throw new InternalErrorException("unexpected time rollback");
        }

        if ((timeRemaining.getDoubleValue() > 0)
                && (timeElapsed.getDoubleValue() > 0)) {
            Iterator outputPorts = container.outputPortList().iterator();
            _isFiringAllowed = false;

            while (outputPorts.hasNext()) {
                Receiver[][] insideReceivers;
                TypedIOPort port = (TypedIOPort) outputPorts.next();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.