Storeable Class Reference

Base class for any persistable HepData objects. More...

Inheritance diagram for Storeable:

Inheritance graph
[legend]

List of all members.


Public Member Functions

String toString ()
 Default String representation: declares that method is not properly defined by default.

Package Functions

Logger log ()
 Neat method to allow every class to get hold of a custom-named Logger.

Detailed Description

Base class for any persistable HepData objects.

Author:
Andy Buckley
Version:
Date
Revision

Definition at line 12 of file Storeable.java.


Member Function Documentation

Logger log (  )  [package]

Neat method to allow every class to get hold of a custom-named Logger.

Definition at line 14 of file Storeable.java.

Referenced by Uncertainty.compareTo(), Reference.compareTo(), PointError.compareTo(), Modification.compareTo(), Experiment.compareTo(), DatasetError.compareTo(), AxisError.compareTo(), Data.makeExample(), Data.makeExampleDataset(), Data.makeExampleExperiment(), Data.makeExamplePaper(), Data.makeExampleXAxes(), Data.makeExampleYAxes(), DatasetError.setNormType(), and Uncertainty.toString().

00014                  {
00015         return Logger.getLogger(this.getClass());
00016     }

String toString (  ) 

Default String representation: declares that method is not properly defined by default.

Reimplemented in Axis, Bin, Data, Dataset, Experiment, Modification, Paper, Particle, Point, Property, Reaction, Reference, Uncertainty, XAxis, and YAxis.

Definition at line 19 of file Storeable.java.

00019                              {
00020         StringBuffer s = new StringBuffer();
00021         s.append(this.getClass().getName() + ".toString() is not overloaded.");
00022         return s.toString();
00023     }


The documentation for this class was generated from the following file:
Generated on Thu Sep 20 11:41:39 2007 by  doxygen 1.5.3