|
|
|
|
Input/Output Operations : Loading from an XML Stream
|
|
Step by Step
Open an input stream.
|
private final String _input =
"<?XML version=\"1.0\"?><Facade><Resources> ...";
StringBufferInputStream theInput
= new StringBufferInputStream(_input); |
Create a new facade from the stream.
|
_facade = new AWTFacade(theParameters,theInput); |
Initialize the facade.
|
_facade.buildInit(null);
_facade.buildComplete() |
|
|
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.
|
|
|
Related Classes
and Methods
|
|
|
What Next ?
Now you can :
|
|
|
|
|
|
|
|
|