Other projects
Tutorial 0 : Getting Started
This section provides a quick tour to get you up and running with the Kuix framework.
It defines the component approach used in Kuix and will help you to configure your IDE with Kuix. Then, it will provide the keys to understand the global structure of the framework through the introduction of both interface design approach and the event processor.
Framework components
What does the framework contains? What is its structure?
Check the API Reference.
Using Kuix with Netbeans
Download and install your IDE:
Start installing WTK on your system.
Open NetBeans and create a new J2ME project

Select Mobility > MIDP Application and click next

Set the project's name and uncheck Create Hello MIDlet and click next

Select the default platform and click finish

Right click on your fresh created project and select Properties. In the dialog window, select Libraries & Resources and click on Add Jar/Zip. Navigate to the files (kuix.jar and kutil.jar) you have downloaded at step 1.

Right click on your project ans select New / Java class.


Edit the new class source code and make your class extends org.kalmeo.kuix.core.KuixMIDlet.

Right click on your project and select Properties. In the dialog window, select Application descriptor and click on the MIDlet tab, then click the Add button, and fill textfileds as you can see in the below image.

Congratulation, your project is ready to work with Kuix
Using Kuix with EclipseME
Download and install your IDE:
- Sun Wireless ToolKit (WTK 2.5.2),
- Eclipse (Europa release for instance),
- EclipseME or another mobile extension for eclipse,
- Kuix Framework and Kutil Library
Start installing WTK on your system.
Install Eclipse with the mobile extension of your choice (EclipseME for instance).Open Eclipse and create a new J2ME project

Set the project's name and click next
On the Java Settings screen, select the Libraries tab and click add JARs... (or add External JARs... depending if you have saved Kuix and Kutil in your workspace or not). Navigate to the file you have downloaded at step 1.


Export Kuix with your project to include the framework in your JAR

Congratulation, your project is ready to work with Kuix
Go forward, create your first Kuix application : Tutorial 1.

