com.japisoft.framework
Interface ApplicationStep

All Known Implementing Classes:
ApplicationStepAdapter, SplashScreenApplicationStep

public interface ApplicationStep

Here an interface bound to a part of the application starting. The application starting is composed of one or several application steps

Version:
1.0
Author:
(c) 2004 JAPISoft / http://www.japisoft.com

Method Summary
 boolean isFinal()
           
 void start(java.lang.String[] args)
          Start this application step.
 void stop()
          This is called when terminating this application step.
 

Method Detail

start

public void start(java.lang.String[] args)
Start this application step. The application main parameters are provided. It may throw an ApplicationStepException


stop

public void stop()
This is called when terminating this application step. You can use it for freeing any allocated resource


isFinal

public boolean isFinal()
Returns:
true if this application step must be called when terminating the application