Package caltrop.interpreter

Examples of caltrop.interpreter.SingleInputPort


        for (int i = 0; i < ports.length; i++) {
            String name = ports[i].getName();
            TypedIOPort port = (TypedIOPort) _ptActor.getPort(name);

            if (isInput) {
                portMap.put(name, new SingleInputPort(name, new DFInputChannel(
                        port, 0)));
            } else {
                portMap.put(name, new SingleOutputPort(name,
                        new DFOutputChannel(port, 0)));
            }
View Full Code Here

TOP

Related Classes of caltrop.interpreter.SingleInputPort

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.