All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.base.PlatformApplet Maven / Gradle / Ivy

There is a newer version: 2.4
Show newest version
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