All Packages Class Hierarchy This Package Previous Next Index
Class hep.analysis.Page
java.lang.Object
|
+----hep.analysis.Page
- public class Page
- extends Object
Class Page represents pages onto which drawable objects
(such as plots and annotations) can be placed.
-
Page(String)
- Creates a blank page with the specified name.
-
add(Drawable)
-
Adds a drawable (such as a plot or annotation) to a page
-
dispose()
- Deletes the page
-
remove(Drawable)
- Removes a drawable from the page
-
removeAll()
- Clears the page
-
setVisible(boolean)
-
Page
public Page(String name)
- Creates a blank page with the specified name. The page is attached to the current job
and persists until the job is deleted, or the dispose method for the page is called.
dispose
public void dispose()
- Deletes the page
add
public void add(Drawable d)
- Adds a drawable (such as a plot or annotation) to a page
- Parameters:
- d - The Drawable to be added
remove
public void remove(Drawable d)
- Removes a drawable from the page
- Parameters:
- d - The Drawable to be removed
removeAll
public void removeAll()
- Clears the page
setVisible
public void setVisible(boolean visible)
All Packages Class Hierarchy This Package Previous Next Index