< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/chart/ValueAxis.java

Print this page
rev 10359 : 8176236: Some field descriptions are truncated after the JDK-8163501

@@ -70,11 +70,11 @@
     private List<T> minorTickMarkValues = null;
     private boolean minorTickMarksDirty = true;
     // -------------- PRIVATE PROPERTIES -------------------------------------------------------------------------------
 
     /**
-     * The current value for the lowerBound of this axis, i.e. min value.
+     * The current value for the lowerBound of this axis, ie min value.
      * This may be the same as lowerBound or different. It is used by NumberAxis to animate the
      * lowerBound from the old value to the new value.
      */
     protected final DoubleProperty currentLowerBound = new SimpleDoubleProperty(this, "currentLowerBound");
 

@@ -118,11 +118,11 @@
     public final double getScale() { return scale.get(); }
     protected final void setScale(double scale) { this.scale.set(scale); }
     public final ReadOnlyDoubleProperty scaleProperty() { return scale.getReadOnlyProperty(); }
     ReadOnlyDoubleWrapper scalePropertyImpl() { return scale; }
 
-    /** The value for the upper bound of this axis, i.e. max value. This is automatically set if auto ranging is on. */
+    /** The value for the upper bound of this axis, ie max value. This is automatically set if auto ranging is on. */
     private DoubleProperty upperBound = new DoublePropertyBase(100) {
         @Override protected void invalidated() {
             if(!isAutoRanging()) {
                 invalidateRange();
                 requestAxisLayout();

@@ -141,11 +141,11 @@
     };
     public final double getUpperBound() { return upperBound.get(); }
     public final void setUpperBound(double value) { upperBound.set(value); }
     public final DoubleProperty upperBoundProperty() { return upperBound; }
 
-    /** The value for the lower bound of this axis, i.e. min value. This is automatically set if auto ranging is on. */
+    /** The value for the lower bound of this axis, ie min value. This is automatically set if auto ranging is on. */
     private DoubleProperty lowerBound = new DoublePropertyBase(0) {
         @Override protected void invalidated() {
             if(!isAutoRanging()) {
                 invalidateRange();
                 requestAxisLayout();
< prev index next >