Package ptolemy.actor.gt.util

Examples of ptolemy.actor.gt.util.PtolemyExpressionString


            String attributeType, String attributeValue) {
        super(owner, 3);

        NamedObj container = owner.getOwner().getContainer();
        _attributeName = new RegularExpressionString(attributeName);
        _attributeType = new PtolemyExpressionString(container, attributeType);
        _attributeValue = new PtolemyExpressionString(container, attributeValue);
    }
View Full Code Here


            String matcherName) {
        super(owner, 6);

        NamedObj container = owner.getOwner().getContainer();
        _portName = new RegularExpressionString(portName);
        _portType = new PtolemyExpressionString(container, portType);
        _input = input;
        _output = output;
        _multiport = multiport;
        _matcherName = matcherName;
    }
View Full Code Here

        super(owner, 3);

        NamedObj container = owner.getOwner().getContainer();
        _attributeName = attributeName;
        _attributeClass = attributeClass;
        _attributeValue = new PtolemyExpressionString(container, attributeValue);
    }
View Full Code Here

TOP

Related Classes of ptolemy.actor.gt.util.PtolemyExpressionString

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.