< prev index next >

modules/javafx.graphics/src/main/java/javafx/animation/Transition.java

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

@@ -41,11 +41,11 @@
  * called in each frame, while the {@code Transition} is running.
  * <p>
  * In addition an extending class needs to set the duration of a single cycle
  * with {@link Animation#setCycleDuration(javafx.util.Duration)}. This duration
  * is usually set by the user via a duration property (as in
- * {@link FadeTransition#duration}) for example. But it can also be calculated
+ * {@link FadeTransition#durationProperty() duration}) for example. But it can also be calculated
  * by the extending class as is done in {@link ParallelTransition} and
  * {@link FadeTransition}.
  * <p>
  * Below is a simple example. It creates a small animation that updates the
  * {@code text} property of a {@link javafx.scene.text.Text} node. It starts

@@ -119,11 +119,11 @@
 
     /**
      * Returns the {@link Interpolator}, that was set when the
      * {@code Transition} was started.
      *
-     * Changing the {@link #interpolator} of a running {@code Transition} should
+     * Changing the {@link #interpolatorProperty() interpolator} of a running {@code Transition} should
      * have no immediate effect. Instead the running {@code Transition} should
      * continue to use the original {@code Interpolator} until it is stopped and
      * started again.
      *
      * @return the {@code Interpolator} that was set when this

@@ -134,11 +134,11 @@
     }
 
     /**
      * The constructor of {@code Transition}.
      *
-     * This constructor allows to define a {@link #targetFramerate}.
+     * This constructor allows to define a {@link #getTargetFramerate() target framerate}.
      *
      * @param targetFramerate
      *            The custom target frame rate for this {@code Transition}
      */
     public Transition(double targetFramerate) {
< prev index next >