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.


Constructor Index

 o Page(String)
Creates a blank page with the specified name.

Method Index

 o add(Drawable)
Adds a drawable (such as a plot or annotation) to a page
 o dispose()
Deletes the page
 o remove(Drawable)
Removes a drawable from the page
 o removeAll()
Clears the page
 o setVisible(boolean)

Constructors

 o 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.

Methods

 o dispose
 public void dispose()
Deletes the page

 o 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
 o remove
 public void remove(Drawable d)
Removes a drawable from the page

Parameters:
d - The Drawable to be removed
 o removeAll
 public void removeAll()
Clears the page

 o setVisible
 public void setVisible(boolean visible)

All Packages  Class Hierarchy  This Package  Previous  Next  Index