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. |
Definition at line 12 of file Storeable.java.
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(), AxisError.setAxis(), DatasetError.setDataset(), DatasetError.setNormType(), PointError.setPoint(), and Uncertainty.toString().
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 }