|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Package <Unnamed> |
|---|
| Class AffineTransformBug extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 700262412146835398L
| Package info.monitorenter.gui.chart |
|---|
| Class info.monitorenter.gui.chart.Chart2D extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3978425840633852978L
| Serialized Fields |
|---|
java.util.List<E> m_axesXBottom
The first element is always existing and is the downward compatible result
of the call .
Chart2D.getAxisX()
java.util.List<E> m_axesXTop
If empty no top x axes are shown.
java.util.List<E> m_axesYLeft
The first element is always existing and is the downward compatible result
of the call .
Chart2D.getAxisY()
java.util.List<E> m_axesYRight
If empty no right y axes are shown.
IAxisTickPainter m_axisTickPainter
java.awt.Color m_gridcolor
int m_minPaintLatency
AAxis<T extends IAxisScalePolicy> m_mouseTranslationXAxis
Chart2DChart2D.translateMousePosition(MouseEvent).
Defaults to the first bottom x axis.
AAxis<T extends IAxisScalePolicy> m_mouseTranslationYAxis
Chart2DChart2D.translateMousePosition(MouseEvent).
Defaults to the first left y axis.
boolean m_paintLabels
IPointFinder m_pointFinder
info.monitorenter.gui.chart.Chart2D.PointHighlighter m_pointHighlightListener
ITrace2D.getPointHighlighters()).
Also removes highlighters (potentially if they are exclusive) from the previous highlighted point.
javax.swing.Timer m_repainter
Chart2D.m_minPaintLatency
ms.
boolean m_requestedRepaint
will always have at least have an interval of
Chart2D.m_minPaintLatency ms.
Access to it has to be synchronized!
boolean m_synchronizedXStart
Chart2D m_synchronizedXStartChart
IToolTipType m_toolTip
int m_traceHighlighterCount
ITracePointProvider m_tracePointProvider
boolean m_useAntialiasing
int m_xChartEnd
int m_xChartStart
int m_yChartEnd
The px coordinates in awt / swing start from top and increase towards the bottom.
int m_yChartStart
| Class info.monitorenter.gui.chart.IAxis.AxisTitle extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -7734801964168791096L
| Serialized Fields |
|---|
java.beans.PropertyChangeSupport m_propertyChangeSupport
java.lang.String m_title
java.awt.Color m_titleColor
Color.BLACK.
java.awt.Font m_titleFont
IAxisTitlePainter m_titlePainter
| Class info.monitorenter.gui.chart.MockFontMetrics extends java.awt.FontMetrics implements Serializable |
|---|
serialVersionUID: 3905236827622486832L
| Class info.monitorenter.gui.chart.TracePoint2D extends java.awt.geom.Point2D.Double implements Serializable |
|---|
serialVersionUID: 3618980079204512309L
| Serialized Fields |
|---|
java.util.Set<E> m_additionalPointPainters
ITrace2D m_listener
ITrace who owns this point.
A trace point should be contained only in one trace!
double m_scaledX
double m_scaledY
double m_x
double m_y
| Class info.monitorenter.gui.chart.ZoomableChart extends Chart2D implements Serializable |
|---|
serialVersionUID: 8799808716942023907L
| Serialized Fields |
|---|
int m_lastPressedButton
java.awt.geom.Point2D m_startPoint
IRangePolicy m_zoomAllRangePolicy
java.awt.geom.Rectangle2D m_zoomArea
| Package info.monitorenter.gui.chart.annotations |
|---|
| Class info.monitorenter.gui.chart.annotations.AAnnotationContentComponent extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3147218476248666442L
| Serialized Fields |
|---|
ITracePoint2D m_annotatedPoint
| Class info.monitorenter.gui.chart.annotations.AnnotationContentComponentDataValues extends AAnnotationContentComponent implements Serializable |
|---|
serialVersionUID: 5288884368670766243L
| Serialized Fields |
|---|
javax.swing.JTextField m_textfield
| Package info.monitorenter.gui.chart.annotations.bubble |
|---|
| Class info.monitorenter.gui.chart.annotations.bubble.AnnotationBubble extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: -3668420139916533725L
| Serialized Fields |
|---|
AnnotationBubble.DragListener m_dragListener
boolean m_outlineDragMode
ChartPanel m_chartPanel
AAnnotationContentComponent m_content
javax.swing.JComponent m_titleBar
| Class info.monitorenter.gui.chart.annotations.bubble.AnnotationBubble.AnnotationTitleBar extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 4182197132940971837L
| Serialized Fields |
|---|
javax.swing.JButton m_closeButton
| Class info.monitorenter.gui.chart.annotations.bubble.AnnotationCreatorBubble extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -339733222044962043L
| Package info.monitorenter.gui.chart.axis |
|---|
| Class info.monitorenter.gui.chart.axis.AAxis extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -3615740476406530580L
| Serialized Fields |
|---|
IAxisScalePolicy m_axisScalePolicy
AAxis.AChart2DDataAccessor m_accessor
It determines, which axis (x or y) this instance is representing.
int m_axisPosition
IAxis.AxisTitle m_axisTitle
AxisTitlePainterDefault
.
IAxisLabelFormatter m_formatter
double m_majorTickSpacing
AAxis.setMajorTickSpacing(double)double m_max
double m_min
double m_minorTickSpacing
AAxis.setMinorTickSpacing(double)boolean m_needsFullRescale
It is set to false in which is triggered from
the painting Thread. Whenever a bound change is detected in
AAxis.scale() this is set to
true.
AAxis.propertyChange(PropertyChangeEvent)
Please remind: In previous versions there was only a test if the bounds had changed since the last scaling. This was not always correct: If in between two paint cycles the bounds were changed and new points added but at the point in time when the 2nd paint cycle starts the bounds would be equal no full rescaling would be performed even if the added points would have been scaled in relation to the changed bounds at their adding time: Bounds checks are not sufficient!
boolean m_paintGrid
boolean m_paintScale
int m_pixelXLeft
int m_pixelXRight
int m_pixelYBottom
int m_pixelYTop
java.beans.PropertyChangeSupport m_propertyChangeSupport
IRangePolicy m_rangePolicy
Range m_rangePreviousScaling
This is used for detection of dirty scaling.
Range m_reusedRange
AAxis.getRange().
boolean m_startMajorTick
Default is false.
java.util.Set<E> m_traces
Set used to store the different
ITrace2d instances to paint with z-index ordering based on
ITrace2D.getZIndex().
It is crucial to use a set implementation here that is not backed by a map. To be more precise: It is crucial to use an implementation that will use equals whenever operations like contains are invoked instead of searching by a computed key. In the latter case you could add traces here (at that point in time a key is computed from the trace state) then modify the traces (e.g. adding points) and later when trying to remove the trace the given traces's key would be computed but no key for it found.
boolean m_visible
| Class info.monitorenter.gui.chart.axis.AAxis.AChart2DDataAccessor extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 5023422232812082122L
| Serialized Fields |
|---|
Chart2D m_chart
| Class info.monitorenter.gui.chart.axis.AAxis.XDataAccessor extends AAxis.AChart2DDataAccessor implements Serializable |
|---|
serialVersionUID: 1185826702304621485L
| Class info.monitorenter.gui.chart.axis.AAxis.YDataAccessor extends AAxis.AChart2DDataAccessor implements Serializable |
|---|
serialVersionUID: -3665759247443586028L
| Class info.monitorenter.gui.chart.axis.AAxisTransformation extends AAxis<T extends AxisScalePolicyTransformation> implements Serializable |
|---|
serialVersionUID: -4665444421196939779L
| Serialized Fields |
|---|
long m_outputErrorTstamp
| Class info.monitorenter.gui.chart.axis.AAxisTransformation.XDataAccessor extends AAxis.XDataAccessor implements Serializable |
|---|
serialVersionUID: 8775312615991487847L
| Class info.monitorenter.gui.chart.axis.AAxisTransformation.YDataAccessor extends AAxis.YDataAccessor implements Serializable |
|---|
serialVersionUID: 3043923189624836455L
| Class info.monitorenter.gui.chart.axis.AxisInverse extends AAxis<T extends IAxisScalePolicy> implements Serializable |
|---|
serialVersionUID: -1688970969107347292L
| Class info.monitorenter.gui.chart.axis.AxisInverse.XDataInverseAccessor extends AAxis.XDataAccessor implements Serializable |
|---|
serialVersionUID: -7789192812199631543L
| Class info.monitorenter.gui.chart.axis.AxisInverse.YDataInverseAccessor extends AAxis.YDataAccessor implements Serializable |
|---|
serialVersionUID: -1759763478911933057L
| Class info.monitorenter.gui.chart.axis.AxisLinear extends AAxis<T extends IAxisScalePolicy> implements Serializable |
|---|
serialVersionUID: 4725336592625669661L
| Class info.monitorenter.gui.chart.axis.AxisLog10 extends AAxisTransformation<T extends AxisScalePolicyTransformation> implements Serializable |
|---|
serialVersionUID: -1783172443489534956L
| Class info.monitorenter.gui.chart.axis.AxisLogE extends AAxisTransformation<T extends AxisScalePolicyTransformation> implements Serializable |
|---|
serialVersionUID: 1839309514449455729L
| Package info.monitorenter.gui.chart.axistickpainters |
|---|
| Class info.monitorenter.gui.chart.axistickpainters.AxisTickPainterDefault extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 4182009686170740710L
| Package info.monitorenter.gui.chart.axistitlepainters |
|---|
| Class info.monitorenter.gui.chart.axistitlepainters.AxisTitlePainterDefault extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -8076180259242501703L
| Package info.monitorenter.gui.chart.controls |
|---|
| Class info.monitorenter.gui.chart.controls.LayoutFactory.PropertyChangeCheckBoxMenuItem extends javax.swing.JCheckBoxMenuItem implements Serializable |
|---|
serialVersionUID: 3690196534012752439L
| Class info.monitorenter.gui.chart.controls.LayoutFactory.PropertyChangeMenuItem extends javax.swing.JMenuItem implements Serializable |
|---|
serialVersionUID: 3690196534012752439L
| Serialized Fields |
|---|
java.lang.ref.WeakReference<T> m_component
JComponent
that is used to adapt basic UI properties to.
| Class info.monitorenter.gui.chart.controls.OneStringChooserPanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 208040286473528841L
| Serialized Fields |
|---|
javax.swing.JTextField m_value
| Class info.monitorenter.gui.chart.controls.RangeChooserPanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3258413911148410931L
| Serialized Fields |
|---|
com.jidesoft.swing.RangeSlider m_rangeSlider
java.text.NumberFormat m_nf
| Class info.monitorenter.gui.chart.controls.TwoStringsChooserPanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 5185791493833091309L
| Serialized Fields |
|---|
javax.swing.JTextField m_value1
javax.swing.JTextField m_value2
| Package info.monitorenter.gui.chart.controls.errorbarwizard |
|---|
| Class info.monitorenter.gui.chart.controls.errorbarwizard.ErrorBarDirectionPanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 7474825906798331943L
| Class info.monitorenter.gui.chart.controls.errorbarwizard.ErrorBarPainterEditPanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: -6564631494967160532L
| Serialized Fields |
|---|
IErrorBarPainter m_errorBarPainter
| Class info.monitorenter.gui.chart.controls.errorbarwizard.ErrorBarPaintersPanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 2293007395124251482L
| Serialized Fields |
|---|
javax.swing.JButton m_addButton
| Class info.monitorenter.gui.chart.controls.errorbarwizard.ErrorBarPaintersPanel.ErrorBarPainterConfigurablePanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 1055140441129248409L
| Serialized Fields |
|---|
IErrorBarPainter m_errorBarPainter
| Class info.monitorenter.gui.chart.controls.errorbarwizard.ErrorBarPolicyPanel extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 5185411570993974756L
| Class info.monitorenter.gui.chart.controls.errorbarwizard.ErrorBarWizard extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 6973894101328190445L
| Package info.monitorenter.gui.chart.demos |
|---|
| Class info.monitorenter.gui.chart.demos.AntialiasingChart extends javax.swing.JFrame implements Serializable |
|---|
serialVersionUID: 3545231432038627123L
| Serialized Fields |
|---|
Chart2D m_chart
| Class info.monitorenter.gui.chart.demos.AxisScalePolicyManualTickChart extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3257009847668192307L
| Class info.monitorenter.gui.chart.demos.CoordinateViewChart extends javax.swing.JFrame implements Serializable |
|---|
serialVersionUID: 1195707820931595997L
| Serialized Fields |
|---|
Chart2D m_chart
| Class info.monitorenter.gui.chart.demos.MinimalStaticChart extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3257009847668192306L
| Class info.monitorenter.gui.chart.demos.MinimalStaticChartWithNanValues extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3257009847668192306L
| Class info.monitorenter.gui.chart.demos.MultiAxesStaticChart extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3476998470009995195L
| Class info.monitorenter.gui.chart.demos.MultiAxisZoomTest extends javax.swing.JFrame implements Serializable |
|---|
serialVersionUID: -2249660781499017221L
| Class info.monitorenter.gui.chart.demos.MultitraceStaticChart extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 5364605038515831018L
| Class info.monitorenter.gui.chart.demos.MultiTracing extends javax.swing.JFrame implements Serializable |
|---|
serialVersionUID: 3256722879394820657L
| Serialized Fields |
|---|
Chart2D m_chart
| Class info.monitorenter.gui.chart.demos.Showcase extends javax.swing.JApplet implements Serializable |
|---|
serialVersionUID: 3904676068135678004L
| Serialized Fields |
|---|
Chart2D m_chart
Trace2DLtd m_trace
| Class info.monitorenter.gui.chart.demos.StaticChartErrorBarLineDisc extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3257009847668192306L
| Class info.monitorenter.gui.chart.demos.StaticChartWithBoxAndTitle extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3257009847668192306L
| Class info.monitorenter.gui.chart.demos.StaticChartXAxisInverse extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: -7965444904622492209L
| Class info.monitorenter.gui.chart.demos.StaticCollectorChart extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 3689069555917797688L
| Serialized Fields |
|---|
Chart2D m_chart
| Class info.monitorenter.gui.chart.demos.ZoomChartWithErrorBarsAndLogAxis extends javax.swing.JFrame implements Serializable |
|---|
serialVersionUID: 1497610918434714345L
| Class info.monitorenter.gui.chart.demos.ZoomTest extends javax.swing.JFrame implements Serializable |
|---|
serialVersionUID: -2249660781499017221L
| Package info.monitorenter.gui.chart.dialogs |
|---|
| Class info.monitorenter.gui.chart.dialogs.ModalDialog extends javax.swing.JDialog implements Serializable |
|---|
serialVersionUID: 6915311633181971117L
| Serialized Fields |
|---|
javax.swing.JComponent m_chooserPanel
boolean m_ok
| Package info.monitorenter.gui.chart.errorbars |
|---|
| Class info.monitorenter.gui.chart.errorbars.AErrorBarPolicyConfigurable extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -1163969612681194656L
| Serialized Fields |
|---|
java.util.Set<E> m_errorBarPainters
boolean m_isEnded
ITracePoint2D m_lastPoint
AErrorBarPolicyConfigurable.paintPoint(int, int, int, int, Graphics, ITracePoint2D).
It will be needed at AErrorBarPolicyConfigurable.endPaintIteration(Graphics) as the former
method only uses the first set of coordinates to store in the internal list
to avoid duplicates.
int m_lastX
AErrorBarPolicyConfigurable.paintPoint(int, int, int, int, Graphics, ITracePoint2D).
It will be needed at AErrorBarPolicyConfigurable.endPaintIteration(Graphics) as the former
method only uses the first set of coordinates to store in the internal list
to avoid duplicates.
int m_lastY
AErrorBarPolicyConfigurable.paintPoint(int, int, int, int, Graphics, ITracePoint2D).
It will be needed at AErrorBarPolicyConfigurable.endPaintIteration(Graphics) as the former
method only uses the first set of coordinates to store in the internal list
to avoid duplicates.
java.beans.PropertyChangeSupport m_propertyChangeSupport
PropertyChangeEvents
and maintaining PropertyChangeListeners.
PropertyChangeListener instances.
ErrorBarPixel m_reusedErrorBarPixel
boolean m_showNegativeXErrors
boolean m_showNegativeYErrors
boolean m_showPositiveXErrors
boolean m_showPositiveYErrors
ITrace2D m_trace
| Class info.monitorenter.gui.chart.errorbars.ErrorBarPainter extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -4978322492200966266L
| Serialized Fields |
|---|
IPointPainterConfigurableUI<T extends IPointPainter<T>> m_connectionPainter
IPointPainterConfigurableUI<T extends IPointPainter<T>> m_endPointPainter
java.beans.PropertyChangeSupport m_propertyChangeSupport
PropertyChangeEvents and maintaining PropertyChangeListeners.
IErrorBarPainter.ISegment m_segmentConnection
IErrorBarPainter.ISegment m_segmentEnd
IErrorBarPainter.ISegment m_segmentStart
IPointPainterConfigurableUI<T extends IPointPainter<T>> m_startPointPainter
| Class info.monitorenter.gui.chart.errorbars.ErrorBarPainterLine extends ErrorBarPainter implements Serializable |
|---|
serialVersionUID: -7877672177550520292L
| Class info.monitorenter.gui.chart.errorbars.ErrorBarPixel extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -8982331911629960274L
| Serialized Fields |
|---|
int m_negativeXErrorPixel
int m_negativeYErrorPixel
int m_positiveXErrorPixel
int m_positiveYErrorPixel
ITrace2D m_trace
IErrorBarPolicy is assigned to. This is
needed for the transformation. Although for the transformation the
underlying chart instance is needed the trace has to be stored as
reassigning the trace to another chart would break the chain and transform
values based upon the wrong chart.
| Class info.monitorenter.gui.chart.errorbars.ErrorBarPolicyAbsoluteSummation extends AErrorBarPolicyConfigurable implements Serializable |
|---|
serialVersionUID: 256014145931710475L
| Serialized Fields |
|---|
double m_xError
double m_yError
| Class info.monitorenter.gui.chart.errorbars.ErrorBarPolicyRelative extends AErrorBarPolicyConfigurable implements Serializable |
|---|
serialVersionUID: 1031825382468141565L
| Serialized Fields |
|---|
double m_relativeXError
double m_relativeYError
| Package info.monitorenter.gui.chart.events |
|---|
| Class info.monitorenter.gui.chart.events.AAxisAction extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 2602716712958711393L
| Serialized Fields |
|---|
int m_axis
| Class info.monitorenter.gui.chart.events.AChart2DAction extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: 1583028358015580585L
| Serialized Fields |
|---|
Chart2D m_chart
| Class info.monitorenter.gui.chart.events.AChartPanelAction extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: 5743382676218890737L
| Serialized Fields |
|---|
ChartPanel m_chartpanel
| Class info.monitorenter.gui.chart.events.AErrorBarPainterAction extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: -810722000562110487L
| Serialized Fields |
|---|
IErrorBarPainter m_errorBarPainter
| Class info.monitorenter.gui.chart.events.AErrorBarPolicyAction extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: -5125972469704790485L
| Serialized Fields |
|---|
IErrorBarPolicy<T extends IErrorBarPolicy<T>> m_errorBarPolicy
| Class info.monitorenter.gui.chart.events.AJComponentAction extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: -9150128862126829805L
| Serialized Fields |
|---|
javax.swing.JComponent m_component
| Class info.monitorenter.gui.chart.events.ATrace2DAction extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: 374572347443757594L
| Serialized Fields |
|---|
ITrace2D m_trace
| Class info.monitorenter.gui.chart.events.ATrace2DActionErrorBarPolicy extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: -6043978306287017533L
| Serialized Fields |
|---|
IErrorBarPolicy<T extends IErrorBarPolicy<T>> m_errorBarPolicy
| Class info.monitorenter.gui.chart.events.AxisActionSetFormatter extends AAxisAction implements Serializable |
|---|
serialVersionUID: -5816028313134616682L
| Serialized Fields |
|---|
IAxisLabelFormatter m_formatter
| Class info.monitorenter.gui.chart.events.AxisActionSetGrid extends AAxisAction implements Serializable |
|---|
serialVersionUID: -5816028313134616682L
| Class info.monitorenter.gui.chart.events.AxisActionSetRange extends AAxisAction implements Serializable |
|---|
serialVersionUID: 3258694286479406393L
| Class info.monitorenter.gui.chart.events.AxisActionSetRangePolicy extends AAxisAction implements Serializable |
|---|
serialVersionUID: -3093734349885438197L
| Class info.monitorenter.gui.chart.events.AxisActionSetTitle extends AAxisAction implements Serializable |
|---|
serialVersionUID: -8187453368186978451L
| Class info.monitorenter.gui.chart.events.AxisActionSetTitleFont extends AAxisAction implements Serializable |
|---|
serialVersionUID: -7191047648236258328L
| Serialized Fields |
|---|
java.awt.Font m_titleFont
| Class info.monitorenter.gui.chart.events.AZoomableChartAction extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: 4752833979551851279L
| Serialized Fields |
|---|
ZoomableChart m_chart
| Class info.monitorenter.gui.chart.events.Chart2DActionEnableAntialiasing extends AChart2DAction implements Serializable |
|---|
serialVersionUID: -5816028313134616682L
| Class info.monitorenter.gui.chart.events.Chart2DActionEnableHighlighting extends AChart2DAction implements Serializable |
|---|
serialVersionUID: -5816028313134616682L
| Class info.monitorenter.gui.chart.events.Chart2DActionPrintSingleton extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 3475108617927262279L
| Class info.monitorenter.gui.chart.events.Chart2DActionSaveImageSingleton extends AChart2DAction implements Serializable |
|---|
serialVersionUID: -2800571545563022874L
| Serialized Fields |
|---|
javax.swing.JFileChooser m_filechooser
JFileChooser used to choose the location for saving snapshot images.
| Class info.monitorenter.gui.chart.events.Chart2DActionSetAxis extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 2385589123139195036L
| Serialized Fields |
|---|
int m_axisTarget
Chart2D.X or
Chart2D.Y.
| Class info.monitorenter.gui.chart.events.Chart2DActionSetCustomGridColor extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 3691034370412916788L
| Serialized Fields |
|---|
java.awt.Color m_lastChosenColor
| Class info.monitorenter.gui.chart.events.Chart2DActionSetCustomGridColorSingleton extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 3691034370412916788L
| Serialized Fields |
|---|
java.awt.Color m_lastChosenColor
| Class info.monitorenter.gui.chart.events.Chart2DActionSetGridColor extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 3689069560279937078L
| Serialized Fields |
|---|
java.awt.Color m_color
| Class info.monitorenter.gui.chart.events.Chart2DActionSetName extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 3691034370412916788L
| Class info.monitorenter.gui.chart.events.Chart2DActionSetPaintLabels extends AChart2DAction implements Serializable |
|---|
serialVersionUID: 2032168563789294815L
| Class info.monitorenter.gui.chart.events.ChartActionSetToolTipType extends AChart2DAction implements Serializable |
|---|
serialVersionUID: -5816028313134616682L
| Serialized Fields |
|---|
IToolTipType m_toolTipType
| Class info.monitorenter.gui.chart.events.ChartPanelActionAddAnnotation extends AChartPanelAction implements Serializable |
|---|
serialVersionUID: 8338223879880089342L
| Class info.monitorenter.gui.chart.events.ErrorBarPainterActionEdit extends AErrorBarPainterAction implements Serializable |
|---|
serialVersionUID: 3337393664927952024L
| Serialized Fields |
|---|
java.awt.Component m_dialogParent
| Class info.monitorenter.gui.chart.events.ErrorBarPainterActionSetSegmentColor extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: 7905566121691585692L
| Serialized Fields |
|---|
IErrorBarPainter.ISegment m_segment
javax.swing.JComponent m_dialogParent
| Class info.monitorenter.gui.chart.events.ErrorBarPainterActionSetSegmentPainter extends javax.swing.AbstractAction implements Serializable |
|---|
serialVersionUID: -7759456438679504271L
| Serialized Fields |
|---|
IPointPainterConfigurableUI<T extends IPointPainter<T>> m_pointPainter
IErrorBarPainter.ISegment m_segment
| Class info.monitorenter.gui.chart.events.ErrorBarPolicyActionAddPainter extends AErrorBarPolicyAction implements Serializable |
|---|
serialVersionUID: -697786192464802918L
| Class info.monitorenter.gui.chart.events.ErrorBarPolicyActionRemovePainter extends AErrorBarPolicyAction implements Serializable |
|---|
serialVersionUID: -2354747899391850767L
| Serialized Fields |
|---|
IErrorBarPainter m_errorBarPainter
| Class info.monitorenter.gui.chart.events.ErrorBarPolicyActionShowWizard extends AErrorBarPolicyAction implements Serializable |
|---|
serialVersionUID: 3413195708957445554L
| Class info.monitorenter.gui.chart.events.ErrorBarPolicyMultiAction extends ATrace2DActionErrorBarPolicy implements Serializable |
|---|
serialVersionUID: -4976003066220869828L
| Serialized Fields |
|---|
javax.swing.Action m_addAction
javax.swing.JMenu m_addMenu
javax.swing.Action m_editAction
javax.swing.JMenu m_editMenu
javax.swing.Action m_removeAction
javax.swing.JMenu m_removeMenu
| Class info.monitorenter.gui.chart.events.JComponentActionSetBackground extends AJComponentAction implements Serializable |
|---|
serialVersionUID: 3258131345116181297L
| Serialized Fields |
|---|
java.awt.Color m_color
| Class info.monitorenter.gui.chart.events.JComponentActionSetCustomBackground extends AJComponentAction implements Serializable |
|---|
serialVersionUID: 3904680491952451890L
| Serialized Fields |
|---|
java.awt.Color m_lastChosenColor
| Class info.monitorenter.gui.chart.events.JComponentActionSetCustomBackgroundSingleton extends AJComponentAction implements Serializable |
|---|
serialVersionUID: 3904680491952451890L
| Serialized Fields |
|---|
java.awt.Color m_lastChosenColor
| Class info.monitorenter.gui.chart.events.JComponentActionSetCustomForeground extends AJComponentAction implements Serializable |
|---|
serialVersionUID: 3904680491952451890L
| Serialized Fields |
|---|
java.awt.Color m_lastChosenColor
| Class info.monitorenter.gui.chart.events.JComponentActionSetCustomForegroundSingleton extends AJComponentAction implements Serializable |
|---|
serialVersionUID: 3904680491952451890L
| Serialized Fields |
|---|
java.awt.Color m_lastChosenColor
| Class info.monitorenter.gui.chart.events.JComponentActionSetForeground extends AJComponentAction implements Serializable |
|---|
serialVersionUID: 3258131345116181297L
| Serialized Fields |
|---|
java.awt.Color m_color
| Class info.monitorenter.gui.chart.events.Trace2DActionAddErrorBarPolicy extends ATrace2DActionErrorBarPolicy implements Serializable |
|---|
serialVersionUID: -6819371146517378618L
| Class info.monitorenter.gui.chart.events.Trace2DActionAddRemoveHighlighter extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3978986583057707570L
| Serialized Fields |
|---|
IPointPainter<T extends IPointPainter<T>> m_pointHighlighter
| Class info.monitorenter.gui.chart.events.Trace2DActionAddRemoveTracePainter extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3978986583057707570L
| Serialized Fields |
|---|
ITracePainter<T extends ITracePainter<T>> m_tracePainter
| Class info.monitorenter.gui.chart.events.Trace2DActionRemove extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: -6161504244812708443L
| Class info.monitorenter.gui.chart.events.Trace2DActionRemoveErrorBarPolicy extends ATrace2DActionErrorBarPolicy implements Serializable |
|---|
serialVersionUID: -6819371146517378618L
| Class info.monitorenter.gui.chart.events.Trace2DActionSetColor extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3761972665908473913L
| Serialized Fields |
|---|
java.awt.Color m_color
| Class info.monitorenter.gui.chart.events.Trace2DActionSetCustomColor extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3904680491952451890L
| Serialized Fields |
|---|
java.awt.Color m_lastChosen
java.awt.Component m_trigger
Component.addMouseListener(java.awt.event.MouseListener)| Class info.monitorenter.gui.chart.events.Trace2DActionSetName extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3904680491952451890L
| Serialized Fields |
|---|
java.awt.Component m_trigger
Component.addMouseListener(java.awt.event.MouseListener)| Class info.monitorenter.gui.chart.events.Trace2DActionSetPhysicalUnits extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: -1480859890474568930L
| Serialized Fields |
|---|
java.awt.Component m_trigger
Component.addMouseListener(java.awt.event.MouseListener)| Class info.monitorenter.gui.chart.events.Trace2DActionSetStroke extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3978986583057707570L
| Class info.monitorenter.gui.chart.events.Trace2DActionSetVisible extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3689069560279937078L
| Class info.monitorenter.gui.chart.events.Trace2DActionSetZindex extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3978986583057707570L
| Serialized Fields |
|---|
java.lang.Integer m_zIndex
| Class info.monitorenter.gui.chart.events.Trace2DActionZindexDecrease extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3978986583057707570L
| Serialized Fields |
|---|
int m_decrease
| Class info.monitorenter.gui.chart.events.Trace2DActionZindexIncrease extends ATrace2DAction implements Serializable |
|---|
serialVersionUID: 3978986583057707570L
| Serialized Fields |
|---|
int m_increase
| Class info.monitorenter.gui.chart.events.ZoomableChartZoomOutAction extends AZoomableChartAction implements Serializable |
|---|
serialVersionUID: 1663463025252405898L
| Package info.monitorenter.gui.chart.labelformatters |
|---|
| Class info.monitorenter.gui.chart.labelformatters.ALabelFormatter extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 5211073371003781159L
| Serialized Fields |
|---|
java.beans.PropertyChangeSupport m_propertyChangeSupport
| Class info.monitorenter.gui.chart.labelformatters.LabelFormatterAutoUnits extends ALabelFormatter implements Serializable |
|---|
serialVersionUID: -7812902015853326946L
| Serialized Fields |
|---|
ALabelFormatter m_delegate
AUnit m_unit
In this implementation it is only used for finding labels that match the ticks.
| Class info.monitorenter.gui.chart.labelformatters.LabelFormatterDate extends ALabelFormatter implements Serializable |
|---|
serialVersionUID: -7201853569619240987L
| Serialized Fields |
|---|
int m_cachedMaxAmountChars
java.text.SimpleDateFormat m_dateFormat
double m_lastFormatted
| Class info.monitorenter.gui.chart.labelformatters.LabelFormatterNumber extends ALabelFormatter implements Serializable |
|---|
serialVersionUID: 7659252726783423615L
| Serialized Fields |
|---|
double m_cachedMinValueShift
LabelFormatterNumber.format(double). This value is
computed once and cached because it's computation is expensive.
java.text.NumberFormat m_numberFormat
| Class info.monitorenter.gui.chart.labelformatters.LabelFormatterSimple extends LabelFormatterNumber implements Serializable |
|---|
serialVersionUID: 432931329620546628L
| Class info.monitorenter.gui.chart.labelformatters.LabelFormatterUnit extends ALabelFormatter implements Serializable |
|---|
serialVersionUID: -6180347628045892405L
| Serialized Fields |
|---|
ALabelFormatter m_delegate
AUnit m_unit
In this implementation it is only used for finding labels that match the ticks.
| Package info.monitorenter.gui.chart.layouts |
|---|
| Class info.monitorenter.gui.chart.layouts.FlowLayoutCorrectMinimumSize extends java.awt.FlowLayout implements Serializable |
|---|
serialVersionUID: 5192358035459949687L
| Package info.monitorenter.gui.chart.pointpainters |
|---|
| Class info.monitorenter.gui.chart.pointpainters.APointPainter extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -8279972259015294590L
| Serialized Fields |
|---|
ColorMutable m_color
ColorMutable m_colorFill
java.awt.Stroke m_stroke
| Class info.monitorenter.gui.chart.pointpainters.PointPainterDisc extends APointPainter<PointPainterDisc> implements Serializable |
|---|
serialVersionUID: -6317473632026920774L
| Serialized Fields |
|---|
int m_discSize
int m_halfDiscSize
| Class info.monitorenter.gui.chart.pointpainters.PointPainterLine extends APointPainter<PointPainterLine> implements Serializable |
|---|
serialVersionUID: 4325801979289678143L
| Class info.monitorenter.gui.chart.pointpainters.PointPainterVerticalBar extends APointPainter<PointPainterVerticalBar> implements Serializable |
|---|
serialVersionUID: 659897369391828199L
| Serialized Fields |
|---|
Chart2D m_chart
int m_halfWidth
| Package info.monitorenter.gui.chart.rangepolicies |
|---|
| Class info.monitorenter.gui.chart.rangepolicies.ARangePolicy extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 1895087230983658166L
| Serialized Fields |
|---|
java.beans.PropertyChangeSupport m_propertyChangeSupport
PropertyChangeEvents
and maintaining PropertyChangeListeners.
PropertyChangeListener instances.
Range m_range
IRangePolicy.getMax(double, double) and
IRangePolicy.getMax(double, double).
| Class info.monitorenter.gui.chart.rangepolicies.RangePolicyFixedViewport extends ARangePolicy implements Serializable |
|---|
serialVersionUID: 4403327213232041577L
| Class info.monitorenter.gui.chart.rangepolicies.RangePolicyForcedPoint extends RangePolicyMinimumViewport implements Serializable |
|---|
serialVersionUID: 5676959746627361093L
| Class info.monitorenter.gui.chart.rangepolicies.RangePolicyHighestValues extends ARangePolicy implements Serializable |
|---|
serialVersionUID: 3966377720997931343L
| Serialized Fields |
|---|
double m_highestValueRangeToShow
| Class info.monitorenter.gui.chart.rangepolicies.RangePolicyHighestValuesForcedMin extends ARangePolicy implements Serializable |
|---|
serialVersionUID: -6200980210918463142L
| Serialized Fields |
|---|
double m_highestValueRangeToShow
| Class info.monitorenter.gui.chart.rangepolicies.RangePolicyMinimumViewport extends ARangePolicy implements Serializable |
|---|
serialVersionUID: 6561375203121878786L
| Class info.monitorenter.gui.chart.rangepolicies.RangePolicyUnbounded extends ARangePolicy implements Serializable |
|---|
serialVersionUID: 1008709094237454345L
| Package info.monitorenter.gui.chart.traces |
|---|
| Class info.monitorenter.gui.chart.traces.ATrace2D extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -3955095612824507919L
| Serialization Methods |
|---|
private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException,
java.lang.ClassNotFoundException
java.io.IOException - if there is an I/O error.
java.lang.ClassNotFoundException - if there is a classpath problem.
private void writeObject(java.io.ObjectOutputStream stream)
throws java.io.IOException
java.io.IOException - if there is an I/O error.| Serialized Fields |
|---|
java.util.List<E> m_changeListeners
ChangeListener instances (mainly
Char2D instances that are interested in changes of internal
ITracePoint2D instances.
java.awt.Color m_color
java.util.List<E> m_computingTraces
java.util.Set<E> m_errorBarPolicies
boolean m_firsttime
double m_maxX
double m_maxXErrorBar
double m_maxY
double m_maxYErrorBar
double m_minX
double m_minXErrorBar
double m_minY
double m_minYErrorBar
java.lang.String m_name
java.lang.String m_physicalUnitsX
java.lang.String m_physicalUnitsY
java.util.Set<E> m_pointHighlighters
java.beans.PropertyChangeSupport m_propertyChangeSupport
PropertyChangeEvents
and maintaining PropertyChangeListeners.
java.lang.Object m_renderer
Chart2D this trace is added to. Needed for
synchronization.
java.util.Set<E> m_tracePainters
boolean m_visible
java.lang.Integer m_zIndex
| Class info.monitorenter.gui.chart.traces.Trace2DAxisSwap extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -5987864541853522562L
| Serialized Fields |
|---|
ITrace2D m_delegate
| Class info.monitorenter.gui.chart.traces.Trace2DBijective extends Trace2DSimple implements Serializable |
|---|
serialVersionUID: 2913093358404794473L
| Class info.monitorenter.gui.chart.traces.Trace2DDebugger extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -3016496113269676817L
| Serialized Fields |
|---|
ITrace2D m_delegate
Range m_xRange
IllegalArgumentException will be thrown.
Range m_yRange
IllegalArgumentException will be thrown.
| Class info.monitorenter.gui.chart.traces.Trace2DLtd extends ATrace2D implements Serializable |
|---|
serialVersionUID: -6664475237146326176L
| Serialized Fields |
|---|
IRingBuffer<T> m_buffer
| Class info.monitorenter.gui.chart.traces.Trace2DLtdReplacing extends Trace2DLtd implements Serializable |
|---|
serialVersionUID: -6048361222161598032L
| Class info.monitorenter.gui.chart.traces.Trace2DLtdSorted extends Trace2DSorted implements Serializable |
|---|
serialVersionUID: 427790610937808181L
| Serialized Fields |
|---|
int m_maxsize
| Class info.monitorenter.gui.chart.traces.Trace2DReplacing extends Trace2DSimple implements Serializable |
|---|
serialVersionUID: 858570477289251003L
| Class info.monitorenter.gui.chart.traces.Trace2DSimple extends ATrace2D implements Serializable |
|---|
serialVersionUID: -132333501493433766L
| Serialized Fields |
|---|
java.util.List<E> m_points
| Class info.monitorenter.gui.chart.traces.Trace2DSorted extends ATrace2D implements Serializable |
|---|
serialVersionUID: -3518797764292132652L
| Serialized Fields |
|---|
java.util.SortedSet<E> m_points
| Package info.monitorenter.gui.chart.traces.computing |
|---|
| Class info.monitorenter.gui.chart.traces.computing.Trace2DArithmeticMean extends ATrace2D implements Serializable |
|---|
serialVersionUID: -4365986306182830082L
| Serialized Fields |
|---|
IRingBuffer<T> m_pointBuffer
java.util.List<E> m_points
| Class info.monitorenter.gui.chart.traces.computing.Trace2DArithmeticMeanX extends ATrace2D implements Serializable |
|---|
serialVersionUID: -4365986306182830082L
| Serialized Fields |
|---|
IRingBuffer<T> m_pointBuffer
java.util.List<E> m_points
| Class info.monitorenter.gui.chart.traces.computing.Trace2DArithmeticMeanY extends ATrace2D implements Serializable |
|---|
serialVersionUID: -4365986306182830082L
| Serialized Fields |
|---|
IRingBuffer<T> m_pointBuffer
java.util.List<E> m_points
| Package info.monitorenter.gui.chart.traces.painters |
|---|
| Class info.monitorenter.gui.chart.traces.painters.ATracePainter extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -1091004082187803076L
| Serialized Fields |
|---|
boolean m_isEnded
ITracePoint2D m_previousPoint
ATracePainter.paintPoint(int, int, int, int, Graphics, ITracePoint2D).
It will be needed at ATracePainter.endPaintIteration(Graphics) as the former
method only uses the first set of coordinates to store in the internal list
to avoid duplicates.
int m_previousX
ATracePainter.paintPoint(int, int, int, int, Graphics, ITracePoint2D).
It will be needed at ATracePainter.endPaintIteration(Graphics) as the former
method only uses the first set of coordinates to store in the internal list
to avoid duplicates.
int m_previousY
ATracePainter.paintPoint(int, int, int, int, Graphics, ITracePoint2D).
It will be needed at ATracePainter.endPaintIteration(Graphics) as the former
method only uses the first set of coordinates to store in the internal list
to avoid duplicates.
| Class info.monitorenter.gui.chart.traces.painters.TracePainterConfigurable extends ATracePainter implements Serializable |
|---|
serialVersionUID: 548540923475344855L
| Serialized Fields |
|---|
IPointPainter<T extends IPointPainter<T>> m_pointPainter
| Class info.monitorenter.gui.chart.traces.painters.TracePainterDisc extends ATracePainter implements Serializable |
|---|
serialVersionUID: 8919406018882664083L
| Serialized Fields |
|---|
PointPainterDisc m_pointPainter
| Class info.monitorenter.gui.chart.traces.painters.TracePainterFill extends ATracePainter implements Serializable |
|---|
serialVersionUID: -7194158082574997539L
| Serialized Fields |
|---|
Chart2D m_chart
java.util.List<E> m_xPoints
java.util.List<E> m_yPoints
| Class info.monitorenter.gui.chart.traces.painters.TracePainterLine extends ATracePainter implements Serializable |
|---|
serialVersionUID: -3310431930065989648L
| Serialized Fields |
|---|
IPointPainter<T extends IPointPainter<T>> m_pointPainter
| Class info.monitorenter.gui.chart.traces.painters.TracePainterPolyline extends ATracePainter implements Serializable |
|---|
serialVersionUID: 142122979535173974L
| Serialized Fields |
|---|
java.util.List<E> m_xPoints
java.util.List<E> m_yPoints
| Class info.monitorenter.gui.chart.traces.painters.TracePainterVerticalBar extends ATracePainter implements Serializable |
|---|
serialVersionUID: 6151930248938945671L
| Serialized Fields |
|---|
PointPainterVerticalBar m_pointPainter
| Package info.monitorenter.gui.chart.views |
|---|
| Class info.monitorenter.gui.chart.views.ChartCoordinateView extends javax.swing.JPanel implements Serializable |
|---|
serialVersionUID: 2547926983897553336L
| Serialized Fields |
|---|
Chart2D m_chart2D
javax.swing.JTextField m_xView
javax.swing.JTextField m_yView
| Class info.monitorenter.gui.chart.views.ChartPanel extends javax.swing.JLayeredPane implements Serializable |
|---|
serialVersionUID: 3905801963714197560L
| Serialized Fields |
|---|
IAnnotationCreator m_annotationCreator
Chart2D m_chart
javax.swing.JPanel m_labelPanel
An internal panel for the labels of the traces that uses a
FlowLayout.
| Package info.monitorenter.gui.util |
|---|
| Class info.monitorenter.gui.util.HSBColor extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 3257288036910903863L
| Serialized Fields |
|---|
double m_hue
double m_lum
double m_sat
double m_alpha
| Package info.monitorenter.util |
|---|
| Class info.monitorenter.util.Range extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 3760565278089754419L
| Serialized Fields |
|---|
double m_max
double m_min
| Package info.monitorenter.util.collections |
|---|
| Class info.monitorenter.util.collections.ComparatorToString extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 3682328616684815036L
| Class info.monitorenter.util.collections.IRingBuffer.RingBufferException extends java.lang.RuntimeException implements Serializable |
|---|
serialVersionUID: 3762255244691714610L
| Class info.monitorenter.util.collections.RingBufferArray extends RingBufferArrayFast<T> implements Serializable |
|---|
serialVersionUID: 3977861774055585593L
| Serialized Fields |
|---|
java.util.List<E> m_pendingremove
RingBufferArray.setBufferSize(int) with a smaller argument than the amount of
elements stored.
| Class info.monitorenter.util.collections.RingBufferArrayFast extends java.lang.Object implements Serializable |
|---|
serialVersionUID: 3834590997991404595L
| Serialized Fields |
|---|
java.lang.Object[] m_buffer
boolean m_empty
headpointer
|
+---+---+---+---+
| 0 | 1 | 2 | 3 |
+---+---+---+---+
|
tailpointer
From where to where are the elements?
Where is empty space?
empty == true: 0 elements are contained: buffer empty
empty == false: 4 elements are contained: buffer full
remember:
-the headpointer points to the space where the next element will be inserted.
-the tailpointer points to the space to read the next element from.
int m_headpointer
int m_size
For performance reasons the size of the buffer -1!
int m_tailpointer
| Class info.monitorenter.util.collections.TreeSetGreedy extends java.util.TreeSet<T extends IComparableProperty> implements Serializable |
|---|
serialVersionUID: 3258130237048173623L
| Package info.monitorenter.util.units |
|---|
| Class info.monitorenter.util.units.AUnit extends java.lang.Object implements Serializable |
|---|
serialVersionUID: -8890511971185813347L
| Serialized Fields |
|---|
int m_decimals
double m_factor
AUnit.getValue(double) had to be multiplied with
if the real (unitless) value has to be calculated.
AUnit m_nexLowerUnit
IUnitSystem.
AUnit m_nextHigherUnit
IUnitSystem.
java.lang.String m_unitName
AUnit.getValue(double) has
to be related with to know the this result is displayed in a unit.
| Class info.monitorenter.util.units.UnitFemto extends AUnit implements Serializable |
|---|
serialVersionUID: -7538715067965710254L
| Class info.monitorenter.util.units.UnitGiga extends AUnit implements Serializable |
|---|
serialVersionUID: 3682164215556469359L
| Class info.monitorenter.util.units.UnitKilo extends AUnit implements Serializable |
|---|
serialVersionUID: 3522131414117391282L
| Class info.monitorenter.util.units.UnitMega extends AUnit implements Serializable |
|---|
serialVersionUID: 4026532760136824163L
| Class info.monitorenter.util.units.UnitMicro extends AUnit implements Serializable |
|---|
serialVersionUID: -6833254542840953643L
| Class info.monitorenter.util.units.UnitMilli extends AUnit implements Serializable |
|---|
serialVersionUID: 7021486051162126177L
| Class info.monitorenter.util.units.UnitNano extends AUnit implements Serializable |
|---|
serialVersionUID: 7179898000796269510L
| Class info.monitorenter.util.units.UnitPeta extends AUnit implements Serializable |
|---|
serialVersionUID: -2800158957584369273L
| Class info.monitorenter.util.units.UnitPico extends AUnit implements Serializable |
|---|
serialVersionUID: 7540404587094450278L
| Class info.monitorenter.util.units.UnitTera extends AUnit implements Serializable |
|---|
serialVersionUID: 2581181352559165401L
| Class info.monitorenter.util.units.UnitUnchanged extends AUnit implements Serializable |
|---|
serialVersionUID: 6448279878423044796L
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||