Class Form1
Form1
- public class Form1
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.
Constructor Summary |
Form1()
|
Method Summary |
void |
dispose()
Form1 overrides dispose so it can clean up the
component list. |
static void |
main(java.lang.String[] args)
The main entry point for the application. |
Form1
public Form1()
dispose
public void dispose()
- Form1 overrides dispose so it can clean up the
component list.
main
public static void main(java.lang.String[] args)
- The main entry point for the application.
- Parameters:
args
- Array of parameters passed to the application
via the command line.