Class Summary |
Debug |
This static class is a substitute for the programmer's favorite
debuging tool; inserting 'System.out.println("a="+a);'. |
ImageButton |
A button class that uses an image instead of a textual label. |
ImageLabel |
A class for displaying images. |
JEditor |
Simple editor to edit a single file. |
Log |
Log information with time stamp
Usage:
To have Log output displayed
Log.setLogOn(true,filename)
To produce Log output just specify an identifier and a
string as a parameters to the Class method "Log.out(String id,String x)"
The idea is that the "id" string should be unique so one could search for it
For example:
Log.out("Options01", loginfo); |
MultiLineLabel |
|
Queue |
This class implements a simple efficient FIFO Queue. |