User Guide

Getting Started

Take the following steps to start working with JavaLite.

  1. 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:

  1. 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
  2. Enter the name of your project in the New Java Project Wizard
  3. 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.
  4. Enter the name of your package in the New Java Package Wizard.
  5. 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.
  6. Enter the name of your new class in the New Java Class Wizard.
  7. Click the Finish button to create the class and open a Java Editor and Outline View for it.

  8. 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