Package ptolemy.actor.gt.util

Examples of ptolemy.actor.gt.util.RegularExpressionString


    public AttributeCriterion(GTIngredientList owner, String attributeName,
            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 portType, boolean input, boolean output, boolean multiport,
            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

TOP

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

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.