< prev index next >

modules/javafx.media/src/main/java/javafx/scene/media/AudioClip.java

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

@@ -110,20 +110,20 @@
     private DoubleProperty volume;
 
     /**
      * Set the default volume level. The new setting will only take effect on
      * subsequent plays.
-     * @see #volume
+     * @see #volumeProperty()
      * @param value new default volume level for this clip
      */
     public final void setVolume(double value) {
         volumeProperty().set(value);
     }
 
     /**
      * Get the default volume level.
-     * @see #volume
+     * @see #volumeProperty()
      * @return the default volume level for this clip
      */
     public final double getVolume() {
         return (null == volume) ? 1.0 : volume.get();
     }

@@ -161,20 +161,20 @@
     private DoubleProperty balance;
 
     /**
      * Set the default balance level. The new value will only affect subsequent
      * plays.
-     * @see #balance
+     * @see #balanceProperty()
      * @param balance new default balance
      */
     public void setBalance(double balance) {
         balanceProperty().set(balance);
     }
 
     /**
      * Get the default balance level for this clip.
-     * @see #balance
+     * @see #balanceProperty()
      * @return the default balance for this clip
      */
     public double getBalance() {
         return (null != balance) ? balance.get() : 0.0;
     }

@@ -211,20 +211,20 @@
     private DoubleProperty rate;
 
     /**
      * Set the default playback rate. The new value will only affect subsequent
      * plays.
-     * @see #rate
+     * @see #rateProperty()
      * @param rate the new default playback rate
      */
     public void setRate(double rate) {
         rateProperty().set(rate);
     }
 
     /**
      * Get the default playback rate.
-     * @see #rate
+     * @see #rateProperty()
      * @return default playback rate for this clip
      */
     public double getRate() {
         return (null != rate) ? rate.get() : 1.0;
     }

@@ -264,20 +264,20 @@
     private DoubleProperty pan;
 
     /**
      * Set the default pan value. The new value will only affect subsequent
      * plays.
-     * @see #pan
+     * @see #panProperty()
      * @param pan the new default pan value
      */
     public void setPan(double pan) {
         panProperty().set(pan);
     }
 
     /**
      * Get the default pan value.
-     * @see #pan
+     * @see #panProperty()
      * @return the default pan value for this clip
      */
     public double getPan() {
         return (null != pan) ? pan.get() : 0.0;
     }

@@ -317,20 +317,20 @@
     private IntegerProperty priority;
 
     /**
      * Set the default playback priority. The new value will only affect
      * subsequent plays.
-     * @see #priority
+     * @see #priorityProperty()
      * @param priority the new default playback priority
      */
     public void setPriority(int priority) {
         priorityProperty().set(priority);
     }
 
     /**
      * Get the default playback priority.
-     * @see #priority
+     * @see #priorityProperty()
      * @return the default playback priority of this clip
      */
     public int getPriority() {
         return (null != priority) ? priority.get() : 0;
     }

@@ -377,20 +377,20 @@
     private IntegerProperty cycleCount;
 
     /**
      * Set the default cycle count. The new value will only affect subsequent
      * plays.
-     * @see #cycleCount
+     * @see #cycleCountProperty()
      * @param count the new default cycle count for this clip
      */
     public void setCycleCount(int count) {
         cycleCountProperty().set(count);
     }
 
     /**
      * Get the default cycle count.
-     * @see #cycleCount
+     * @see #cycleCountProperty()
      * @return the default cycleCount for this audio clip
      */
     public int getCycleCount() {
         return (null != cycleCount) ? cycleCount.get() : 1;
     }
< prev index next >