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: 4.0.267
Show newest version
package jadex.base;

import java.applet.Applet;
import java.util.StringTokenizer;

import jadex.commons.gui.BrowserLauncher2;

/**
 *  An applet used to start the Jadex platform.
 */
public class PlatformApplet extends Applet
{
	public void init()
	{
		// Initialize browser launcher.
		BrowserLauncher2.setApplet(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