All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class hep.analysis.PageFolder

java.lang.Object
   |
   +----hep.analysis.Folder
           |
           +----hep.analysis.PageFolder

public class PageFolder
extends Folder
Use this class to organize Page objects into folders. To store a Page in a folder, pass a folder to the Page constructor. Folders can be stored in other folders. Simply pass to the PageFolder constructor the parent PageFolder.

See Also:
Page

Constructor Index

 o PageFolder(String)
Creates a new folder in which you can store pages and other page folders.
 o PageFolder(String, PageFolder)
Creates a new folder in which you can store pages and other histogram folders, and stores the new folder in another folder.

Constructors

 o PageFolder
 public PageFolder(String name)
Creates a new folder in which you can store pages and other page folders.

Parameters:
name - the name for the folder. If a folder with the same name already exists, this object will operate on the same folder (i.e., there won't be two with the same name).
 o PageFolder
 public PageFolder(String name,
                   PageFolder parent)
Creates a new folder in which you can store pages and other histogram folders, and stores the new folder in another folder.

Parameters:
name - the name for the folder. If a folder with the same name already exists, this object will operate on the same folder (i.e., there won't be two with the same name).
parent - the folder to store the new folder in

All Packages  Class Hierarchy  This Package  Previous  Next  Index