FileDocCategorySizeDatePackage
Form1.javaAPI DocExample1279Sun May 31 01:00:00 BST 1998None

Form1

public class Form1 extends Form
This class can take a variable number of parameters on the command line. Program execution begins with the main() method. The class constructor is not invoked unless an object of type 'Form1' is created in the main() method.

Fields Summary
Container
components
NOTE: The following code is required by the Visual J++ form designer. It can be modified using the form editor. Do not modify it using the code editor.
Constructors Summary
public Form1()

		// Required for Visual J++ Form Designer support
		initForm();		

		// TODO: Add any constructor code after initForm call
	
Methods Summary
public voiddispose()
Form1 overrides dispose so it can clean up the component list.

		super.dispose();
		components.dispose();
	
private voidinitForm()


	  
	
		this.setSize (new Point(300,300));
		this.setText ("Form1");
	
public static voidmain(java.lang.String[] args)
The main entry point for the application.

param
args Array of parameters passed to the application via the command line.

		Application.run(new Form1());