Uses of Class
workspace.Page

Packages that use Page
workspace   
 

Uses of Page in workspace
 

Methods in workspace that return Page
static Page Page.getBlankPage()
          Constructs a new Page
 Page Workspace.getCurrentPage(RenderableBlock block)
          Find the page that lies underneath this block CAN RETURN NULL
 Page PageDivider.getLeftPage()
           
protected  Page BlockCanvas.getPageAt(int position)
           
 Page Workspace.getPageNamed(java.lang.String pageName)
           
 Page BlockCanvas.getPageNamed(java.lang.String name)
           
 Page BlockCanvas.removePage(int position)
           
 Page BlockCanvas.removePage(Page page)
           
 Page BlockCanvas.renamePage(java.lang.String oldName, java.lang.String newName)
           
 

Methods in workspace that return types with arguments of type Page
 java.util.List<Page> BlockCanvas.getLeftmostPages(int left)
           
 java.util.List<Page> BlockCanvas.getPages()
           
 

Methods in workspace with parameters of type Page
 void Workspace.addPage(Page page)
          Adds the specified page to the Workspace at the right end of the canvas
 void BlockCanvas.addPage(Page page)
           
 void Workspace.addPage(Page page, int position)
          Adds the specified page to the Workspace at the specified position on the canvas
 void BlockCanvas.addPage(Page page, int position)
           
 void Workspace.pageSelected(Page page, boolean byUser)
          Marks the page of the specified name as being selected.
 void Workspace.putPage(Page page, int position)
          Places the specified page at the specified index.
 void Workspace.removePage(Page page)
          Removes the specified page from the Workspace
 Page BlockCanvas.removePage(Page page)
           
protected static void BlockStackSorterUtil.sortBlockStacks(Page page, java.util.Collection<RenderableBlock> topLevelBlocks)
          This method serves to help clients sort blocks within a page in some manner.
 void BlockCanvas.switchViewToPage(Page page)
           
 

Constructors in workspace with parameters of type Page
PageDivider(Page left)