Class LineInfo

java.lang.Object
rawDeepLearningClassifier.dataPlotFX.LineInfo
All Implemented Interfaces:
Serializable, Cloneable

public class LineInfo extends Object implements Serializable, Cloneable
The line info.
Author:
Jamie Macaulay
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    javafx.scene.paint.Color
    The colour of the line
    double[]
    Only used when serializing the data...
    boolean
    True if the line is enabled (shown on the plot)
  • Constructor Summary

    Constructors
    Constructor
    Description
    LineInfo(boolean enabled, javafx.scene.paint.Color color)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected LineInfo
     

    Methods inherited from class java.lang.Object

    equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • color

      public transient javafx.scene.paint.Color color
      The colour of the line
    • colorSerializable

      public double[] colorSerializable
      Only used when serializing the data...
    • enabled

      public boolean enabled
      True if the line is enabled (shown on the plot)
  • Constructor Details

    • LineInfo

      public LineInfo(boolean enabled, javafx.scene.paint.Color color)
  • Method Details