|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjsynoptic.builtin.Plot.AxeRange
protected class Plot.AxeRange
Class AxeRange. Summary: This class represent an axe range, and contains properties for the axe.
Field Summary | |
---|---|
boolean |
auto
A boolean to keep the auto status. |
protected boolean |
created
A boolean to know if AxeRange has been created by serialization while reading an old file where AxeRange did not exist, or created by a new version. |
boolean |
floatingAxe
A boolean to keep the floating property status. |
double |
floatingAxeRange
Floating range value used when floatingAxe is enabled. |
java.lang.String |
label
The label to apply to the axe. |
double |
max
The min, max an step value of the axe. |
double |
min
The min, max an step value of the axe. |
double |
step
The min, max an step value of the axe. |
boolean |
validity
A boolean to know if the axe's range value are valid. |
Constructor Summary | |
---|---|
Plot.AxeRange()
Constructor AxeRange. |
|
Plot.AxeRange(double _min,
double _max,
double _step,
boolean _validity,
boolean _auto,
java.lang.String _label)
|
|
Plot.AxeRange(double _min,
double _max,
double _step,
boolean _validity,
boolean _auto,
java.lang.String _label,
boolean _floatingAxe,
double _floatingAxeRange)
Constructor AxeRange. |
Method Summary | |
---|---|
void |
computeStep(int nbGraduation)
Method computeStep Summary: This method compute the step to apply to the axeRange. |
void |
set(double _min,
double _max,
double _step,
boolean _validity)
Method set Summary: This method sets some axe range values. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public double min
public double max
public double step
public boolean validity
public boolean auto
public java.lang.String label
public boolean floatingAxe
public double floatingAxeRange
protected boolean created
Constructor Detail |
---|
public Plot.AxeRange()
public Plot.AxeRange(double _min, double _max, double _step, boolean _validity, boolean _auto, java.lang.String _label, boolean _floatingAxe, double _floatingAxeRange)
_min
- The min value of the axe._max
- The max value of the axe._step
- The step value of the axe._validity
- A boolean to know if the axe's range value are valid._auto
- A boolean to keep the auto status_label
- The label to apply to the axepublic Plot.AxeRange(double _min, double _max, double _step, boolean _validity, boolean _auto, java.lang.String _label)
Method Detail |
---|
public void set(double _min, double _max, double _step, boolean _validity)
_min
- The min value of the axe._max
- The max value of the axe._step
- The step value of the axe._validity
- A boolean to know if the axe's range value are valid.public void computeStep(int nbGraduation)
nbGraduation
- The numberOfGraduation to apply.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |