Uses of Class
org.jsurveylib.model.Page

Packages that use Page
org.jsurveylib   
org.jsurveylib.gui.swing.renderer   
org.jsurveylib.io   
org.jsurveylib.model   
 

Uses of Page in org.jsurveylib
 

Methods in org.jsurveylib that return Page
 Page Survey.getCurrentPage()
          FOR INTERNAL USE ONLY. This will return the current Page that the survey is on.
 Page Survey.pageOf(java.lang.String questionId)
          FOR INTERNAL USE ONLY. This will return the page that a question resides in or null if the question does not exist on any page.
 

Methods in org.jsurveylib that return types with arguments of type Page
 java.util.List<Page> Survey.getPages()
          FOR INTERNAL USE ONLY. Returns an unmodifiable List of the pages in this Survey.
 

Methods in org.jsurveylib with parameters of type Page
 void Survey.insertQuestion(Question question, Page page, int row)
          FOR INTERNAL USE ONLY. This is called to insert a question on a survey that is already running.
 

Uses of Page in org.jsurveylib.gui.swing.renderer
 

Methods in org.jsurveylib.gui.swing.renderer with parameters of type Page
 void QuestionToRenderer.visit(Page page)
           
 

Uses of Page in org.jsurveylib.io
 

Methods in org.jsurveylib.io that return types with arguments of type Page
 java.util.List<Page> SurveyReader.getPages()
          The return value of this method may be modified.
 java.util.List<Page> XMLSurveyReader.getPages()
           
 

Uses of Page in org.jsurveylib.model
 

Methods in org.jsurveylib.model with parameters of type Page
 void Visitor.visit(Page page)