Uses of Class
de.dfg.oc.logfileanalyzer.DataElement

Packages that use DataElement
de.dfg.oc.logfileanalyzer Contains classes necessary for starting the program and storing the classifier sets. 
de.dfg.oc.logfileanalyzer.gui Contains classes defining the graphical user interface of the program. 
de.dfg.oc.logfileanalyzer.histogram Contains classes necessary for creating histograms. 
 

Uses of DataElement in de.dfg.oc.logfileanalyzer
 

Fields in de.dfg.oc.logfileanalyzer declared as DataElement
private  DataElement DataElement.nextElement
          Reference to the DataElement of the next iteration
private  DataElement DataElement.previousElement
          Reference to the DataElement of the previous iteration
 

Fields in de.dfg.oc.logfileanalyzer with type parameters of type DataElement
private  Vector<DataElement> DataMemory.data
          Contains all DataElements of an experiment.
 

Methods in de.dfg.oc.logfileanalyzer that return DataElement
 DataElement DataMemory.getFirstElement()
          Returns the DataElement of the first iteration.
 DataElement DataMemory.getLastElement()
          Returns the DataElement of the last iteration.
 DataElement DefaultDataImporter.getNextDataElement(BufferedReader _bR)
           
 DataElement DataImporterInterface.getNextDataElement(BufferedReader _logFileReader)
          Returns a DataElement-object containing the classifier sets of the next unprocessed iteration.
 DataElement DataElement.getNextElement()
          Returns a reference to the DataElement containing the classifier sets for the next iteration.
 DataElement DataElement.getPreviousElement()
          Returns a reference to the DataElement containing the classifier sets for the previous iteration.
 DataElement DataMemory.searchElement(double _iteration)
          Searches for a DataElement by its iteration number.
 

Methods in de.dfg.oc.logfileanalyzer with parameters of type DataElement
private  void DataMemory.saveElement(DataElement _element)
          Stores a DataElement in the memory and updates the object's next- and previous-references.
 void DataElement.setNextElement(DataElement _element)
          Sets the reference to the DataElement containing the classifier sets for the next iteration.
 void DataElement.setPreviousElement(DataElement _element)
          Sets the reference to the DataElement containing the classifier sets for the previous iteration.
 

Uses of DataElement in de.dfg.oc.logfileanalyzer.gui
 

Fields in de.dfg.oc.logfileanalyzer.gui declared as DataElement
private  DataElement TableFrame.currentElement
          Containing the classifier sets of the current iteration
private  DataElement ChartFrame.currentElement
          The current DataElement displayed in the TableFrame.
 

Methods in de.dfg.oc.logfileanalyzer.gui that return DataElement
(package private)  DataElement TableFrame.getCurrentElement()
          Returns the current DataElement with the currently shown data.
 

Methods in de.dfg.oc.logfileanalyzer.gui with parameters of type DataElement
(package private)  void ChartFrame.loadNewDataSet(DataElement _newDataSet)
          Updates this ChartFrame with the data set given as parameter.
 

Uses of DataElement in de.dfg.oc.logfileanalyzer.histogram
 

Methods in de.dfg.oc.logfileanalyzer.histogram with parameters of type DataElement
 JPanel AbstractHistogram.createHistogram(DataElement _dataElement, int _selectedTableId, double _lowerLimit, double _upperLimit)
          Returns a panel containing a histogram.