Package ptolemy.kernel

Examples of ptolemy.kernel.ComponentPort


    // Return all the transitions from the specified state with the specified
    // type.
    private Set _transitionLabelsFrom(State state, int transitionType) {
        Set labels = new HashSet();
        ComponentPort outPort = state.outgoingPort;
        Iterator transitions = outPort.linkedRelationList().iterator();

        while (transitions.hasNext()) {
            InterfaceAutomatonTransition transition = (InterfaceAutomatonTransition) transitions
                    .next();
            int type = transition.getType();
View Full Code Here

TOP

Related Classes of ptolemy.kernel.ComponentPort

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.