JAXXEdit |
From JAXXWiki
The JAXXEdit demo is a complete (albeit simple) application written using JAXX. It is a basic RTF (Rich Text Format) editor which shows off how well JAXX and Java code integrate with one another: the GUI portions are written using JAXX, whereas the backend is written using Java. Since both JAXX and Java compile into Java classes, you don't even need to know (or care!) which language was used to write a particular class in order to use it.
Note: This example is meant to show off how to use JAXX to create a working program, not to show off the principles of modern GUI design. It takes a lot of shortcuts, such as not bothering to confirm before overwriting files during a Save As -- these parts aren't implemented simply because they have little to do with JAXX and you can easily fill in the blanks yourself.
See it in action
To run this example in Java Web Start, click the following link:
To compile and run it yourself, first follow the instructions for installing JAXX. Then download and save the source code using the link below. Once you have done that, extract it and use Ant to build it. This will create an executable JAR file under the build/lib directory.
Source code
JAXXEdit's source code is available from the following link: jaxxedit.zip

