Package repast.simphony.engine.schedule
Interface IAction
- All Known Subinterfaces:
Controller
,ExternalProgramRunner
,IGraphSchedule
,ISchedulableAction
,ISchedule
- All Known Implementing Classes:
AbstractAction
,AbstractDataSetManager.ScheduledDataSet
,CallBackAction
,ContextFreezeDryingAction
,DefaultAction
,DefaultController
,DefaultExtProgRunner
,DefaultGraphSchedule
,DynamicTargetAction
,ExternalModelRunner
,IterableCallBackAction
,PhysicsScheduleAction
,Schedule
,ScheduleGroup
,StateChartBeginAction
,StateChartResolveAction
,StopEnabledCallBackAction
,ThreadedAction
public interface IAction
Interface for executable object. Schedules execute objects that
implement this type either directly or by creating an IAction to
perform the appropriate execution.
- Version:
- $Revision: 1.1 $ $Date: 2005/12/21 22:25:34 $
- Author:
- Nick Collier
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
execute()
Executes this IAction, typically by performing a method call on some object.
-
Method Details
-
execute
void execute()Executes this IAction, typically by performing a method call on some object.
-