Package ptolemy.caltrop.ddi

Examples of ptolemy.caltrop.ddi.DDIFactory


        }
    }

    // Get a DDI appropriate for the actor's director.
    private DDI _getDDI(Environment env) {
        DDIFactory pluginFactory = (DDIFactory) _directorToDDIMap
                .get(getDirector().getClass().getName());

        if (pluginFactory != null) {
            return pluginFactory.create(this, _actor, _theContext, env);
        } else {
            // default to Dataflow case.
            return new Dataflow(this, _actor, _theContext, env);
        }
    }
View Full Code Here

TOP

Related Classes of ptolemy.caltrop.ddi.DDIFactory

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.