jadex.bdi.examples.alarmclock.AppStarter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-bdi Show documentation
Show all versions of jadex-applications-bdi Show documentation
The Jadex BDI applications package contain
several example applications, benchmarks and
testcases using BDI agents.
package jadex.bdi.examples.alarmclock;
import jadex.base.Starter;
/**
* Class for starting the alarmclock application.
*/
public class AppStarter
{
/**
* Main for starting Jadex with the alarmclock.
*/
public static void main(String[] args)
{
Starter.main(new String[]{"-gui", "false", "-component", "jadex/bdi/examples/alarmclock/Alarmclock.agent.xml"});
}
}