< prev index next >

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

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

*** 39,49 **** import com.sun.javafx.scene.shape.ShapeHelper; import java.util.ArrayList; /** * This {@code Transition} creates a path animation that spans its ! * {@link #duration}. The translation along the path is done by updating the * {@code translateX} and {@code translateY} variables of the {@code node}, and * the {@code rotate} variable will get updated if {@code orientation} is set to * {@code OrientationType.ORTHOGONAL_TO_TANGENT}, at regular interval. * <p> * The animated path is defined by the outline of a shape. --- 39,49 ---- import com.sun.javafx.scene.shape.ShapeHelper; import java.util.ArrayList; /** * This {@code Transition} creates a path animation that spans its ! * {@link #durationProperty() duration}. The translation along the path is done by updating the * {@code translateX} and {@code translateY} variables of the {@code node}, and * the {@code rotate} variable will get updated if {@code orientation} is set to * {@code OrientationType.ORTHOGONAL_TO_TANGENT}, at regular interval. * <p> * The animated path is defined by the outline of a shape.
*** 270,284 **** /** * The constructor of {@code PathTransition}. * * @param duration ! * The {@link #duration} of this {@code PathTransition} * @param path ! * The {@link #path} of this {@code PathTransition} * @param node ! * The {@link #node} of this {@code PathTransition} */ public PathTransition(Duration duration, Shape path, Node node) { setDuration(duration); setPath(path); setNode(node); --- 270,284 ---- /** * The constructor of {@code PathTransition}. * * @param duration ! * The {@link #durationProperty() duration} of this {@code PathTransition} * @param path ! * The {@link #pathProperty() path} of this {@code PathTransition} * @param node ! * The {@link #nodeProperty() node} of this {@code PathTransition} */ public PathTransition(Duration duration, Shape path, Node node) { setDuration(duration); setPath(path); setNode(node);
*** 287,299 **** /** * The constructor of {@code PathTransition}. * * @param duration ! * The {@link #duration} of this {@code PathTransition} * @param path ! * The {@link #path} of this {@code PathTransition} */ public PathTransition(Duration duration, Shape path) { this(duration, path, null); } --- 287,299 ---- /** * The constructor of {@code PathTransition}. * * @param duration ! * The {@link #durationProperty() duration} of this {@code PathTransition} * @param path ! * The {@link #pathProperty() path} of this {@code PathTransition} */ public PathTransition(Duration duration, Shape path) { this(duration, path, null); }
< prev index next >