ExperimentFile.java

Go to the documentation of this file.
00001 
00002 //                                                                      //
00003 //  ExperimentFile.java                                                 //
00004 //                                                                      //
00005 //  experiment.ExperimentFile -- interface for experiment files         //
00006 //  Last edited: June 10, 2001 at 11:59 pm                              //
00007 //                                                                      //
00008 //  (c) Copyright 2001 Rice University. All rights reserved.            //
00009 //                                                                      //
00011 
00012 
00013 
00014 
00015 package edu.rice.cs.hpc.data.experiment;
00016 
00017 
00018 import java.io.File;
00019 
00020 import edu.rice.cs.hpc.data.util.IUserData;
00021 
00022 
00023 
00024 
00026 //  INTERFACE EXPERIMENT-FILE                                           //
00028 
00036 public abstract class ExperimentFile
00037 {
00038 
00039 
00040 
00041 
00043 //  INITIALIZATION                                                      //
00045 
00046 
00047 
00048 
00050 //  ACCESS TO FILE CONTENTS                                             //
00052 
00053 
00054 
00055 
00056 /*************************************************************************
00057  *  Parses the file and returns the contained experiment subparts.
00058  *  The subparts are returned by adding them to given lists.
00059  *
00060  *  @param  experiment      Experiment object to own the parsed subparts.
00061  * @throws Exception 
00062  *
00063  ************************************************************************/
00064     
00065 public abstract void parse(File file, BaseExperiment experiment, 
00066         boolean need_metrics, IUserData<String, String> userData)
00067 throws
00068     Exception;
00069 
00070 
00071 
00072 
00073 }
00074 
00075 
00076 
00077 
00078 
00079 
00080 
00081 

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1