IExperiment.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.data.experiment;
00002 
00003 import edu.rice.cs.hpc.data.experiment.scope.RootScope;
00004 import edu.rice.cs.hpc.data.experiment.scope.Scope;
00005 
00006 public interface IExperiment {
00007 
00008     
00009     public void setRootScope(Scope rootScope);
00010     public Scope getRootScope();
00011     
00012     public RootScope getCallerTreeRoot();
00013     
00014     public Object[] getRootScopeChildren();
00015     
00016     public IExperiment duplicate();
00017     
00018 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1