< prev index next >

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

Print this page
rev 10598 : 8185767: Fix broken links in Javadocs

@@ -268,11 +268,11 @@
     };
     /**
      * Indicates whether vertical grid lines are visible or not.
      *
      * @return true if verticalGridLines are visible else false.
-     * @see #verticalGridLinesVisible
+     * @see #verticalGridLinesVisibleProperty()
      */
     public final boolean getVerticalGridLinesVisible() { return verticalGridLinesVisible.get(); }
     public final void setVerticalGridLinesVisible(boolean value) { verticalGridLinesVisible.set(value); }
     public final BooleanProperty verticalGridLinesVisibleProperty() { return verticalGridLinesVisible; }
 

@@ -979,19 +979,19 @@
 
     /** Set the current displayed data value plotted on X axis.
      *
      * @param item The XYChart.Data item from which the current X axis data value is obtained.
      * @param value The X axis data value
-     * @see #getCurrentDisplayedXValue
+     * @see #getCurrentDisplayedXValue(Data)
      */
     protected final void setCurrentDisplayedXValue(Data<X,Y> item, X value) { item.setCurrentX(value); }
 
     /** The current displayed data value property that is plotted on X axis.
      *
      * @param item The XYChart.Data item from which the current X axis data value property object is obtained.
      * @return The current displayed X data value ObjectProperty.
-     * @see #getCurrentDisplayedXValue
+     * @see #getCurrentDisplayedXValue(Data)
      */
     protected final ObjectProperty<X> currentDisplayedXValueProperty(Data<X,Y> item) { return item.currentXProperty(); }
 
     /**
      * The current displayed data value plotted on the Y axis. This may be the same as yValue or different. It is

@@ -1006,19 +1006,19 @@
     /**
      * Set the current displayed data value plotted on Y axis.
      *
      * @param item The XYChart.Data item from which the current Y axis data value is obtained.
      * @param value The Y axis data value
-     * @see #getCurrentDisplayedYValue
+     * @see #getCurrentDisplayedYValue(Data)
      */
     protected final void setCurrentDisplayedYValue(Data<X,Y> item, Y value) { item.setCurrentY(value); }
 
     /** The current displayed data value property that is plotted on Y axis.
      *
      * @param item The XYChart.Data item from which the current Y axis data value property object is obtained.
      * @return The current displayed Y data value ObjectProperty.
-     * @see #getCurrentDisplayedYValue
+     * @see #getCurrentDisplayedYValue(Data)
      */
     protected final ObjectProperty<Y> currentDisplayedYValueProperty(Data<X,Y> item) { return item.currentYProperty(); }
 
     /**
      * The current displayed data extra value. This may be the same as extraValue or different. It is

@@ -1032,20 +1032,20 @@
     /**
      * Set the current displayed data extra value.
      *
      * @param item The XYChart.Data item from which the current extra value is obtained.
      * @param value The extra value
-     * @see #getCurrentDisplayedExtraValue
+     * @see #getCurrentDisplayedExtraValue(Data)
      */
     protected final void setCurrentDisplayedExtraValue(Data<X,Y> item, Object value) { item.setCurrentExtraValue(value); }
 
     /**
      * The current displayed extra value property.
      *
      * @param item The XYChart.Data item from which the current extra value property object is obtained.
      * @return {@literal ObjectProperty<Object> The current extra value ObjectProperty}
-     * @see #getCurrentDisplayedExtraValue
+     * @see #getCurrentDisplayedExtraValue(Data)
      */
     protected final ObjectProperty<Object> currentDisplayedExtraValueProperty(Data<X,Y> item) { return item.currentExtraValueProperty(); }
 
     /**
      * XYChart maintains a list of all items currently displayed this includes all current data + any data items
< prev index next >