1.1. What is Korfe?

A GUI Builder, for Java Components. Korfe works best when used for Swing components.

1.2. How do I add a Component?



1.3. What is JPython?

A scripting language, which is integrated well with Java.
Details can be found at http://www.python.org/jpython

1.4. How do I access Korfe code through JPython?

Korfe has been set up so that you can access the Korfe classes easily.
All you have to do is append the Package name to the start of the className
eg: To access the ObjectMap, use util.ObjectMap

1.5. How do I use a form I created in Korfe, inside my own code?

In the future, there are Plan to add code writing and reading features into Korfe.
The current way to save, is to save the Form as a serialized file, and then access it in your code using the KorfeTools file.

First you must import org.javalobby.apps.korfe.KorfeTools
Then you can access the Serialized file using KorfeTools.loadComponent
You can get a component via its name using KorfeTools.getComponent