hep.analysis.partition
Class PartitionFactory

java.lang.Object
  |
  +--java.util.Observable
        |
        +--hep.analysis.Partition
              |
              +--hep.analysis.partition.PartitionFactory
All Implemented Interfaces:
OneDFillable, java.io.Serializable, StatisticsProvider, TwoDFillable
Direct Known Subclasses:
DefaultPartitionFactory, ScatterPlotPartitionFactory

public abstract class PartitionFactory
extends Partition

See Also:
Serialized Form

Fields inherited from class hep.analysis.Partition
DATE, DELTATIME, DOUBLE, HORIZONTAL_AXIS, INTEGER, m_owner, STRING, VERTICAL_AXIS
 
Constructor Summary
PartitionFactory()
           
 
Method Summary
 void clear()
          Resets the partition to default settings.
 void done()
          Called when event loop is finished; should send a final update of any range and/or data change.
 void fill(java.util.Date x)
           
 void fill(java.util.Date x, double y)
           
 void fill(double x)
           
 void fill(double x, double y)
           
 void fill(int x)
           
 void fill(java.lang.String x)
           
 void fillW(java.util.Date x, double weight)
           
 void fillW(java.util.Date x, double y, double weight)
           
 void fillW(double x, double weight)
           
 void fillW(double x, double y, double weight)
           
 void fillW(int x, double weight)
           
 void fillW(java.lang.String x, double weight)
           
 Statistics getStatistics()
           
 
Methods inherited from class hep.analysis.Partition
destroy, getStyle, makeCopy, setStyle
 
Methods inherited from class java.util.Observable
addObserver, clearChanged, countObservers, deleteObserver, deleteObservers, hasChanged, notifyObservers, notifyObservers, setChanged
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PartitionFactory

public PartitionFactory()
Method Detail

fill

public void fill(double x)

fillW

public void fillW(double x,
                  double weight)

fill

public void fill(int x)

fillW

public void fillW(int x,
                  double weight)

fill

public void fill(java.lang.String x)

fillW

public void fillW(java.lang.String x,
                  double weight)

fill

public void fill(java.util.Date x)

fillW

public void fillW(java.util.Date x,
                  double weight)

fill

public void fill(double x,
                 double y)

fillW

public void fillW(double x,
                  double y,
                  double weight)

fill

public void fill(java.util.Date x,
                 double y)

fillW

public void fillW(java.util.Date x,
                  double y,
                  double weight)

clear

public void clear()
Description copied from class: Partition
Resets the partition to default settings.
Overrides:
clear in class Partition

done

public void done()
Description copied from class: Partition
Called when event loop is finished; should send a final update of any range and/or data change.
Overrides:
done in class Partition

getStatistics

public Statistics getStatistics()