User Guide
Getting Started
Take the following steps to start working with JavaLite.
- Open the JavaLite Perspective by selection Window->Open Perspective->Other... and selecting JavaLite as follows:

The result should look like the following:
Creating Project, Packages and Classes
Take the following steps to create a Java Class:
- First you need to create a new project. In the JavaLite Package Explorer from either the context menu or the JavaLite Package Explore toolbar menu, select New Java Project

- Enter the name of your project in the New Java Project Wizard

- If needed, create a new package, although you can use the default one if you wish, by selecting New Java Package from the context or toolbar menus.

- Enter the name of your package in the New Java Package Wizard.

- To create a Java Class, select either the default package or another package you created and then select New Java Class from the context or toolbar menus.

- Enter the name of your new class in the New Java Class Wizard.

Click the Finish button to create the class and open a Java Editor and Outline View for it.

- To delete a Class, Package, or Project, select it and then select Delete from the context or toolbar menus.

Execution
To execute a Java Class that has a static main method, select the class and select Run as->Java Application from the context or toolbar menus.

The output from executing the class will appear in the Console View
