Examples of FunctionDependencyOfAtomicActor


Examples of ptolemy.actor.util.FunctionDependencyOfAtomicActor

     @see ptolemy.actor.util.FunctionDependency
     */
    public FunctionDependency getFunctionDependency() {
        if (_functionDependency == null) {
            try {
                _functionDependency = new FunctionDependencyOfAtomicActor(this);
            } catch (NameDuplicationException e) {
                // This should not happen.
                throw new InternalErrorException("Failed to construct a "
                        + "function dependency object for " + getFullName());
            } catch (IllegalActionException e) {
View Full Code Here

Examples of ptolemy.actor.util.FunctionDependencyOfAtomicActor

     @param output The output port that does not depend on the
     *   input port.
     *  @see ptolemy.actor.util.FunctionDependencyOfAtomicActor
     */
    public void removeDependency(IOPort input, IOPort output) {
        FunctionDependencyOfAtomicActor functionDependency = (FunctionDependencyOfAtomicActor) getFunctionDependency();
        functionDependency.removeDependency(input, output);
    }
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.