jadex.base.PlatformApplet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-tools-base-swing Show documentation
Show all versions of jadex-tools-base-swing Show documentation
Reusable classes for starting Jadex, running test cases and building
JCC plugins.
package jadex.base;
import jadex.commons.BrowserLauncher2;
import java.applet.Applet;
import java.util.StringTokenizer;
/**
* An applet used to start the Jadex platform.
*/
public class PlatformApplet extends Applet
{
public void init()
{
// Initialize browser launcher.
BrowserLauncher2.applet = this;
// Start platform.
String[] args;
String pargs = getParameter("args");
if(pargs!=null)
{
StringTokenizer stok = new StringTokenizer(pargs);
args = new String[stok.countTokens()];
for(int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy