boot.api.Main
package boot.api;
/**
* Interface provided by application as entry point.
*/
public interface Main {
/**
* Entry point of a Cecilia application. This method is called by the
* "bootstrap component".
*
* @param argc number of command line argument.
* @param argv command line arguments. May be <code>NULL</code> if
* <code>argc</code> is equals to zero.
* @return the exit value of the application.
*/
int main(int argc, string[] argv);
}