Package ptolemy.actor

Examples of ptolemy.actor.IOPort.send()


            String label = union.label();
            Token value = union.value();

            IOPort port = (IOPort) getPort(label);
            if (port != null) {
                port.send(0, value);
            }
        }
    }

    /** Return the type constraints of this actor. The type constraint is
View Full Code Here


                    if (_debugging) {
                        _debug("transferring initial tokens from "
                                + outputPort.getFullName());
                    }

                    outputPort.send(i, token);
                }
            }
        }
        if (_debugging) {
            _debug("DDFDirector.initialize() finished.");
View Full Code Here

                    + "complex, fixpoint, double, int, long  and String, "
                    + "or a Token.");
        }

        if (outPort != null) {
            outPort.send(0, resultToken);
        }
    }

    ///////////////////////////////////////////////////////////////////
    ////                         private variables                 ////
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.