public abstract class ScreenAnnotator
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
protected java.util.ArrayList |
things |
| Constructor and Description |
|---|
ScreenAnnotator()
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(java.lang.Object object)
Add the object to the list of items to be drawn.
|
void |
clear()
Remove all items from the list of things to draw.
|
abstract void |
draw()
Traverses all the data objects in the list and transforms
them into viewable objects and then arranges to make them
visible.
|
abstract void |
makeVisible(boolean on)
Set the visibility flag.
|
void |
remove(java.lang.Object object)
Remove the object from the list of items to be drawn.
|
public abstract void makeVisible(boolean on)
on - true to display, false to undisplay.public abstract void draw()
throws VisADException
VisADException - if if any problem creating the picture.public void add(java.lang.Object object)
object - add this item to the list of things
to draw.public void remove(java.lang.Object object)
object - remove this item from the list of things
to draw.public void clear()