Uses of Class
p3j.pppm.ProjectionModel

Packages that use ProjectionModel
p3j.database   
p3j.database.hibernate   
p3j.experiment   
p3j.experiment.results   
p3j.gui   
p3j.gui.dialogs   
p3j.gui.misc   
p3j.gui.panels   
p3j.gui.panels.dboverview   
p3j.gui.panels.projections   
p3j.gui.panels.results   
p3j.pppm   
p3j.simulation.assignments.exhaustive   
 

Uses of ProjectionModel in p3j.database
 

Methods in p3j.database that return ProjectionModel
 ProjectionModel IP3MDatabase.getProjectionByID(int id)
          Retrieves projection by id.
 

Methods in p3j.database that return types with arguments of type ProjectionModel
 List<ProjectionModel> IP3MDatabase.getAllProjections()
          Retrieves list of all projections from the database.
 

Methods in p3j.database with parameters of type ProjectionModel
 void IP3MDatabase.deleteAllResults(ProjectionModel projection)
          Delete all results of the projection.
 boolean IP3MDatabase.deleteProjection(ProjectionModel projection)
          Delete projection from database.
 List<ResultsOfTrial> IP3MDatabase.getAllResults(ProjectionModel projection)
          Retrieves all results for the given projection.
 IProjectionResultsIterator IP3MDatabase.getResultIterator(ProjectionModel projection)
          Gets the result iterator.
 void IP3MDatabase.newProjection(ProjectionModel projection)
          Adds new projection to database, automatically adds any Parameter or ParameterInstance entities that have not yet been created.
 void IP3MDatabase.saveProjection(ProjectionModel projection)
          Saves projection.
 

Uses of ProjectionModel in p3j.database.hibernate
 

Methods in p3j.database.hibernate that return ProjectionModel
 ProjectionModel P3MDatabase.getProjectionByID(int id)
           
 

Methods in p3j.database.hibernate that return types with arguments of type ProjectionModel
 List<ProjectionModel> P3MDatabase.getAllProjections()
           
 

Methods in p3j.database.hibernate with parameters of type ProjectionModel
 void P3MDatabase.deleteAllResults(ProjectionModel projection)
           
 boolean P3MDatabase.deleteProjection(ProjectionModel projection)
           
 List<ResultsOfTrial> P3MDatabase.getAllResults(ProjectionModel projection)
           
 IProjectionResultsIterator P3MDatabase.getResultIterator(ProjectionModel projection)
           
 void P3MDatabase.newProjection(ProjectionModel projection)
           
 void P3MDatabase.saveProjection(ProjectionModel projection)
           
 

Uses of ProjectionModel in p3j.experiment
 

Methods in p3j.experiment that return ProjectionModel
 ProjectionModel ExperimentDefinition.getProjection()
          Gets the projection.
 

Methods in p3j.experiment with parameters of type ProjectionModel
 void ExperimentDefinition.setProjection(ProjectionModel projection)
          Sets the projection.
 

Constructors in p3j.experiment with parameters of type ProjectionModel
ExperimentDefinition(ProjectionModel proj, long randS, Date currentDate, String userName, Class<? extends IParamAssignmentGenerator> sim)
          Default constructor.
 

Uses of ProjectionModel in p3j.experiment.results
 

Methods in p3j.experiment.results that return ProjectionModel
 ProjectionModel ResultsOfTrial.getProjection()
           
 

Methods in p3j.experiment.results with parameters of type ProjectionModel
 void ResultsOfTrial.setProjection(ProjectionModel projection)
           
 

Constructors in p3j.experiment.results with parameters of type ProjectionModel
ParameterAssumptionEncoder(ProjectionModel projectionModel)
          Instantiates a new parameter assumption encoder.
ResultExport(ProjectionModel projectionModel, File targetDirectory, IResultFilter resultFilter)
          Instantiates a new result export.
 

Uses of ProjectionModel in p3j.gui
 

Methods in p3j.gui that return ProjectionModel
static ProjectionModel P3J.getCurrentProjection()
          Retrieves current PPP model.
 

Methods in p3j.gui with parameters of type ProjectionModel
 void P3J.projectionDeleted(ProjectionModel deletedModel)
          Has to be called to refresh GUI after a ProjectionModel has been deleted.
 void P3J.setCurrentProjection(ProjectionModel newProjModel)
          Switches to a new projection model for editing.
 

Uses of ProjectionModel in p3j.gui.dialogs
 

Methods in p3j.gui.dialogs that return ProjectionModel
 ProjectionModel NewProjectionDialog.getNewProjection()
          Gets the new projection.
 ProjectionModel ConfigureResultFilterDialog.getProjection()
           
 ProjectionModel ProcessProjectionDialog.getProjectionModel()
           
 

Methods in p3j.gui.dialogs with parameters of type ProjectionModel
static void DuplicateProjectionDialog.duplicate(IP3MDatabase db, ProjectionModel originalProjection, String newProjectionName, JLabel status)
          Duplicate.
 

Constructors in p3j.gui.dialogs with parameters of type ProjectionModel
AdjustMaxAgeDialog(ProjectionModel projModel)
          Instantiates a new adjust max age dialog.
ConfigureResultFilterDialog(Frame owner, ProjectionModel projectionModel)
          Instantiates a new configure result filter dialog.
CopyGenerationsDialog(ProjectionModel proj, Window owner)
          Default constructor.
DuplicateProjectionDialog(ProjectionModel projection)
          Instantiates a new duplicate projection dialog.
EditSetsDialog(Frame owner, ProjectionModel proj)
          Deprecated. Default constructor.
EditSetTypesDialog(Frame owner, ProjectionModel scenario)
          Deprecated. Default constructor.
ProcessProjectionDialog(ProjectionModel projection)
          Instantiates a new process projection dialog.
QuickInputDialog(Frame owner, ProjectionModel projection)
          Deprecated. Default constructor.
 

Uses of ProjectionModel in p3j.gui.misc
 

Methods in p3j.gui.misc that return ProjectionModel
 ProjectionModel SetTypesListModel.getProjection()
           
 

Methods in p3j.gui.misc with parameters of type ProjectionModel
 void SetTypesListModel.setProjection(ProjectionModel scenario)
           
 

Constructors in p3j.gui.misc with parameters of type ProjectionModel
SetTypesListModel(ProjectionModel currentProjection)
          Default constructor.
 

Uses of ProjectionModel in p3j.gui.panels
 

Methods in p3j.gui.panels that return ProjectionModel
 ProjectionModel AbstractNavigationPanel.getProjectionModel()
           
 

Methods in p3j.gui.panels with parameters of type ProjectionModel
 void AbstractNavigationPanel.setProjection(ProjectionModel projMod)
          Sets the new projection model to be displayed.
 

Constructors in p3j.gui.panels with parameters of type ProjectionModel
AbstractNavigationPanel(ProjectionModel projectionModel, JPanel content)
          Instantiates a new abstract navigation panel.
 

Uses of ProjectionModel in p3j.gui.panels.dboverview
 

Constructors in p3j.gui.panels.dboverview with parameters of type ProjectionModel
OverviewProjectionNode(ProjectionModel projectionModel, String name)
          Instantiates a new overview projection node.
 

Uses of ProjectionModel in p3j.gui.panels.projections
 

Methods in p3j.gui.panels.projections with parameters of type ProjectionModel
protected  void ProjectionNode.adjustMaxAge(ProjectionModel projectionModel)
          Adjusts maximum age.
 

Constructors in p3j.gui.panels.projections with parameters of type ProjectionModel
ProjectionNode(ProjectionModel projection)
          Default constructor.
ProjectionTreePanel(ProjectionModel proj, JPanel content)
          The Constructor.
 

Uses of ProjectionModel in p3j.gui.panels.results
 

Methods in p3j.gui.panels.results with parameters of type ProjectionModel
protected  ResultExport ResultTreeRoot.configureResultExport(ProjectionModel projection, File targetDir)
          Configures result export.
 

Constructors in p3j.gui.panels.results with parameters of type ProjectionModel
ResultTreePanel(ProjectionModel proj, JPanel content)
          Default constructor.
ResultTreeRoot(ProjectionModel projectionModel)
          Instantiates a new result tree root.
 

Uses of ProjectionModel in p3j.pppm
 

Methods in p3j.pppm that return ProjectionModel
 ProjectionModel PPPModelFactory.createDefaultModel()
          Creates a default ProjectionModel.
 ProjectionModel PPPModelFactory.createModel(String name, String description, int generations, int years, int maxAge, int jumpOffYear)
          Creates a new PPPModel object.
 

Constructors in p3j.pppm with parameters of type ProjectionModel
SymbolicProjectionModel(ProjectionModel pModel)
          Instantiates a new symbolic projection model.
 

Uses of ProjectionModel in p3j.simulation.assignments.exhaustive
 

Methods in p3j.simulation.assignments.exhaustive with parameters of type ProjectionModel
protected  long ExhaustiveAssignmentGenerator.calculateNumOfSetCombinations(ProjectionModel proj)
          Calculates number of distinct sets.
 



Copyright © 2012. All Rights Reserved.