|
|
|||||||||||
|
|
||||||||||||
More Visualization Mode : ASCII |
||||||||||||
Keep a reference to an ASCII facade.
|
||||||||||||
private ASCIIFacade _facade; |
_facade = new ASCIIFacade(); |
initResources(_facade); buildBox(_facade); |
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";
}
}); |
_facade.disposeWhenInactive(); |
Example
|
The Whole Program
Related Classes
and Methods
What Next ?
Tutorial |
Previous |
Current |
Next |
|
Comments or suggestions? Need some help? Copyright ©1998 INRIA Last updated 4 November 1998 by Bruno Conductier |
|