Package ptolemy.caltrop.ddi
Interface DDIFactory
-
- All Known Implementing Classes:
CSPFactory
,DDFFactory
,SDFFactory
public interface DDIFactory
The DDIFactory is used to create domain dependent plugins.- Since:
- Ptolemy II 4.0
- Version:
- $Id$
- Author:
- Christopher Chang
- Pt.AcceptedRating:
- Red (cxh)
- Pt.ProposedRating:
- Red (cxh)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DDI
create(TypedAtomicActor ptActor, caltrop.interpreter.ast.Actor actor, caltrop.interpreter.Context context, caltrop.interpreter.environment.Environment env)
Create a domain dependent plugin.
-
-
-
Method Detail
-
create
DDI create(TypedAtomicActor ptActor, caltrop.interpreter.ast.Actor actor, caltrop.interpreter.Context context, caltrop.interpreter.environment.Environment env)
Create a domain dependent plugin.- Parameters:
ptActor
- The instance ofptolemy.actor.Actor
that the plugin will be associated with.actor
- The abstract syntax tree of the CAL source.context
- The context that the plugin will use.env
- The environment that the plugin will use.- Returns:
- A DDI for this domain.
-
-