FIGUE
*Tutorial *Previous *Current *Next

More Visualization Mode : ASCII

* Step by Step

Keep a reference to an ASCII facade.
private ASCIIFacade _facade;
Initialize the ASCII facade.
_facade = new ASCIIFacade();
Initialize the resources and build the boxes.
initResources(_facade);
buildBox(_facade);
Write on an output stream.
final StringWriter theOutputStream = new StringWriter();
_facade.executeWhenInactive(new CommandInterface() {
    public final boolean execute() {
         _facade.update(theOutputStream);
         _textArea.append(theOutputStream.toString());
	 return true;
     }
     public final String getName() {
         return "Done";
     }
});
Free the resources when done.
_facade.disposeWhenInactive();

* Example

Accelerators :
home, end, page up, page down, left arrow,right arrow, up arrow, down arrow.
Autoscrolling :
drag the mouse inside the text area, approach a border or a corner, and wait.
Actions :
scroll the lower text area to see the ascii ouput.

* The Whole Program

* Related Classes and Methods

* What Next ?

Now you can :

*Tutorial *Previous *Current *Next

Comments or suggestions?
Need some help?
Copyright ©1998 INRIA
Last updated 4 November 1998 by Bruno Conductier
FIGUE