# HG changeset patch # User jgiles # Date 1329179668 -46800 # Node ID bf87940925fd09590db9a236c0159d1a8a4eb065 # Parent ba1157eac6e58bd2fb33b88272c943ba700c6f2e [DOC ONLY] Removing unused @profile javadoc comments diff --git a/javafx-ui-common/src/javafx/animation/PathTransition.java b/javafx-ui-common/src/javafx/animation/PathTransition.java --- a/javafx-ui-common/src/javafx/animation/PathTransition.java +++ b/javafx-ui-common/src/javafx/animation/PathTransition.java @@ -200,8 +200,6 @@ /** * Specifies the upright orientation of {@code node} along the {@code path}. - * - * @profile common */ public static enum OrientationType { diff --git a/javafx-ui-common/src/javafx/animation/Transition.java b/javafx-ui-common/src/javafx/animation/Transition.java --- a/javafx-ui-common/src/javafx/animation/Transition.java +++ b/javafx-ui-common/src/javafx/animation/Transition.java @@ -89,7 +89,6 @@ *

* Default interpolator is set to {@link Interpolator#EASE_BOTH}. * - * @profile common * @defaultvalue EASE_BOTH */ private ObjectProperty interpolator; @@ -137,7 +136,6 @@ * added to another transition, such as {@link ParallelTransition} and * {@link SequentialTransition}, then parent will be null. * - * @profile common * @defaultvalue null */ Transition parent = null; @@ -164,8 +162,6 @@ * Returns the target {@link Node} for animation of this {@code Transition}. * This method returns {@code node} if it is set, else returns its * {@code parent.getTargetNode()} otherwise null. - * - * @profile common */ protected Node getParentTargetNode() { return (parent != null) ? parent.getParentTargetNode() : null; diff --git a/javafx-ui-common/src/javafx/application/ConditionalFeature.java b/javafx-ui-common/src/javafx/application/ConditionalFeature.java --- a/javafx-ui-common/src/javafx/application/ConditionalFeature.java +++ b/javafx-ui-common/src/javafx/application/ConditionalFeature.java @@ -36,8 +36,6 @@ * on a platform that does not support it will not cause an exception. In * general, the conditional feature will just be ignored. See the documentation * for each feature for more detail. - * - * @profile common */ public enum ConditionalFeature { diff --git a/javafx-ui-common/src/javafx/geometry/BoundingBox.java b/javafx-ui-common/src/javafx/geometry/BoundingBox.java --- a/javafx-ui-common/src/javafx/geometry/BoundingBox.java +++ b/javafx-ui-common/src/javafx/geometry/BoundingBox.java @@ -28,8 +28,6 @@ /** * A rectangular bounding box which is used to describe the bounds of a node * or other scene graph object. - * - * @profile common */ public class BoundingBox extends Bounds { /** @@ -206,8 +204,6 @@ * The content and format of the returned string might getMary between * implementations. * The returned string might be empty but cannot be {@code null}. - * - * @profile common */ @Override public String toString() { return "BoundingBox [" diff --git a/javafx-ui-common/src/javafx/geometry/Bounds.java b/javafx-ui-common/src/javafx/geometry/Bounds.java --- a/javafx-ui-common/src/javafx/geometry/Bounds.java +++ b/javafx-ui-common/src/javafx/geometry/Bounds.java @@ -28,14 +28,11 @@ /** * The base class for objects that are used to describe the bounds of a node or * other scene graph object. - * - * @profile common */ public abstract class Bounds { /** * The x coordinate of the upper-left corner of this {@code Bounds}. * - * @profile common * @defaultvalue 0.0 */ public final double getMinX() { return minX; } @@ -44,7 +41,6 @@ /** * The y coordinate of the upper-left corner of this {@code Bounds}. * - * @profile common * @defaultvalue 0.0 */ public final double getMinY() { return minY; } @@ -52,7 +48,6 @@ /** * The minimum z coordinate of this {@code Bounds}. * - * @profile common conditional scene3d * @defaultvalue 0.0 * @since JavaFX 1.3 */ @@ -61,7 +56,6 @@ /** * The width of this {@code Bounds}. * - * @profile common * @defaultvalue 0.0 */ public final double getWidth() { return width; } @@ -69,7 +63,6 @@ /** * The height of this {@code Bounds}. * - * @profile common * @defaultvalue 0.0 */ public final double getHeight() { return height; } @@ -77,7 +70,6 @@ /** * The depth of this {@code Bounds}. * - * @profile common conditional scene3d * @defaultvalue 0.0 * @since JavaFX 1.3 */ @@ -86,7 +78,6 @@ /** * The x coordinate of the lower-right corner of this {@code Bounds}. * - * @profile common * @defaultvalue {@code minX + width} */ public final double getMaxX() { return maxX; } @@ -94,7 +85,6 @@ /** * The y coordinate of the lower-right corner of this {@code Bounds}. * - * @profile common * @defaultvalue {@code minY + height} */ public final double getMaxY() { return maxY; } @@ -102,7 +92,6 @@ /** * The maximum z coordinate of this {@code Bounds}. * - * @profile common conditional scene3d * @defaultvalue {@code minZ + depth} * @since JavaFX 1.3 */ @@ -120,7 +109,6 @@ /** * Tests if the specified point is inside the boundary of {@code Bounds}. * - * @profile common * @param p the specified point to be tested * @return true if the specified point is inside the boundary of this * {@code Bounds}; false otherwise. @@ -130,7 +118,6 @@ /** * Tests if the specified point is inside the boundary of {@code Bounds}. * - * @profile common * @param p the specified 3D point to be tested * @return true if the specified point is inside the boundary of this * {@code Bounds}; false otherwise. @@ -141,7 +128,6 @@ * Tests if the specified {@code (x, y)} coordinates are inside the boundary * of {@code Bounds}. * - * @profile common * @param x the specified x coordinate to be tested * @param y the specified y coordinate to be tested * @return true if the specified {@code (x, y)} coordinates are inside the @@ -153,7 +139,6 @@ * Tests if the specified {@code (x, y, z)} coordinates are inside the boundary * of {@code Bounds}. * - * @profile common * @param x the specified x coordinate to be tested * @param y the specified y coordinate to be tested * @return true if the specified {@code (x, y)} coordinates are inside the @@ -165,7 +150,6 @@ * Tests if the interior of this {@code Bounds} entirely contains the * specified Bounds, {@code b}. * - * @profile common * @param b The specified Bounds * @return true if the specified Bounds, {@code b}, is inside the * boundary of this {@code Bounds}; false otherwise. @@ -176,7 +160,6 @@ * Tests if the interior of this {@code Bounds} entirely contains the * specified rectangular area. * - * @profile common * @param x the x coordinate of the upper-left corner of the specified * rectangular area * @param y the y coordinate of the upper-left corner of the specified @@ -192,7 +175,6 @@ * Tests if the interior of this {@code Bounds} entirely contains the * specified rectangular area. * - * @profile common * @param x the x coordinate of the upper-left corner of the specified * rectangular volume * @param y the y coordinate of the upper-left corner of the specified @@ -212,7 +194,6 @@ * Tests if the interior of this {@code Bounds} intersects the interior * of a specified Bounds, {@code b}. * - * @profile common * @param b The specified Bounds * @return true if the interior of this {@code Bounds} and the interior * of the specified Bounds, {@code b}, intersect. @@ -223,7 +204,6 @@ * Tests if the interior of this {@code Bounds} intersects the interior * of a specified rectangular area. * - * @profile common * @param x the x coordinate of the upper-left corner of the specified * rectangular area * @param y the y coordinate of the upper-left corner of the specified @@ -239,7 +219,6 @@ * Tests if the interior of this {@code Bounds} intersects the interior * of a specified rectangular area. * - * @profile common * @param x the x coordinate of the upper-left corner of the specified * rectangular volume * @param y the y coordinate of the upper-left corner of the specified diff --git a/javafx-ui-common/src/javafx/geometry/Dimension2D.java b/javafx-ui-common/src/javafx/geometry/Dimension2D.java --- a/javafx-ui-common/src/javafx/geometry/Dimension2D.java +++ b/javafx-ui-common/src/javafx/geometry/Dimension2D.java @@ -28,7 +28,6 @@ /** * A 2D dimension object that contains a width and a height. * - * @profile common * @since JavaFX 1.3 */ public class Dimension2D { @@ -113,8 +112,6 @@ * The content and format of the returned string might vary between * implementations. * The returned string might be empty but cannot be {@code null}. - * - * @profile common */ @Override public String toString() { return "Dimension2D [width = " + getWidth() + ", height = " + getHeight() + "]"; diff --git a/javafx-ui-common/src/javafx/geometry/Insets.java b/javafx-ui-common/src/javafx/geometry/Insets.java --- a/javafx-ui-common/src/javafx/geometry/Insets.java +++ b/javafx-ui-common/src/javafx/geometry/Insets.java @@ -27,8 +27,6 @@ /** * A set of inside offsets for the 4 side of a rectangular area - * - * @profile common */ public class Insets { /** diff --git a/javafx-ui-common/src/javafx/geometry/Point2D.java b/javafx-ui-common/src/javafx/geometry/Point2D.java --- a/javafx-ui-common/src/javafx/geometry/Point2D.java +++ b/javafx-ui-common/src/javafx/geometry/Point2D.java @@ -27,14 +27,11 @@ /** * A 2D geometric point that represents the x, y coordinates. - * - * @profile common */ public class Point2D { /** * The x coordinate. * - * @profile common * @defaultvalue 0.0 */ private double x; @@ -50,7 +47,6 @@ /** * The y coordinate. * - * @profile common * @defaultvalue 0.0 */ private double y; @@ -81,7 +77,6 @@ /** * Computes the distance between this point and point {@code (x1, y1)}. * - * @profile common * @param x1 the x coordinate of other point * @param y1 the y coordinate of other point * @return the distance between this point and point {@code (x1, y1)}. @@ -95,7 +90,6 @@ /** * Computes the distance between this point and point {@code p}. * - * @profile common * @param p the other point * @return the distance between this point and point {@code p}. */ @@ -137,8 +131,6 @@ * The content and format of the returned string might vary between * implementations. * The returned string might be empty but cannot be {@code null}. - * - * @profile common */ @Override public String toString() { return "Point2D [x = " + getX() + ", y = " + getY() + "]"; diff --git a/javafx-ui-common/src/javafx/geometry/Point3D.java b/javafx-ui-common/src/javafx/geometry/Point3D.java --- a/javafx-ui-common/src/javafx/geometry/Point3D.java +++ b/javafx-ui-common/src/javafx/geometry/Point3D.java @@ -28,7 +28,6 @@ /** * A 3D geometric point that represents the x, y, z coordinates. * - * @profile common conditional scene3d * @since JavaFX 1.3 */ @@ -36,7 +35,6 @@ /** * The x coordinate. * - * @profile common conditional scene3d * @defaultvalue 0.0 */ private double x; @@ -52,7 +50,6 @@ /** * The y coordinate. * - * @profile common conditional scene3d * @defaultvalue 0.0 */ private double y; @@ -68,7 +65,6 @@ /** * The z coordinate. * - * @profile common conditional scene3d * @defaultvalue 0.0 */ private double z; @@ -105,7 +101,6 @@ * @param y1 the y coordinate of other point * @param z1 the z coordinate of other point * @return the distance between this point and point {@code (x1, y1, z1)}. - * @profile common conditional scene3d */ public double distance(double x1, double y1, double z1) { double a = getX() - x1; @@ -119,7 +114,6 @@ * * @param p the other point * @return the distance between this point and point {@code p}. - * @profile common conditional scene3d */ public double distance(Point3D p) { return distance(p.getX(), p.getY(), p.getZ()); @@ -158,8 +152,6 @@ * The content and format of the returned string might vary between * implementations. * The returned string might be empty but cannot be {@code null}. - * - * @profile common conditional scene3d */ @Override public String toString() { return "Point3D [x = " + getX() + ", y = " + getY() + ", z = " + getZ() + "]"; diff --git a/javafx-ui-common/src/javafx/geometry/Rectangle2D.java b/javafx-ui-common/src/javafx/geometry/Rectangle2D.java --- a/javafx-ui-common/src/javafx/geometry/Rectangle2D.java +++ b/javafx-ui-common/src/javafx/geometry/Rectangle2D.java @@ -28,8 +28,6 @@ /** * A 2D rectangle used to describe the bounds of an object. It is defined by a * location (minX, minY) and dimension (width x height). - * - * @profile common */ public class Rectangle2D { /** @@ -40,7 +38,6 @@ /** * The x coordinate of the upper-left corner of this {@code Rectangle2D}. * - * @profile common * @defaultvalue 0.0 */ public double getMinX() { return minX; } @@ -49,7 +46,6 @@ /** * The y coordinate of the upper-left corner of this {@code Rectangle2D}. * - * @profile common * @defaultvalue 0.0 */ public double getMinY() { return minY; } @@ -58,7 +54,6 @@ /** * The width of this {@code Rectangle2D}. * - * @profile common * @defaultvalue 0.0 */ public double getWidth() { return width; } @@ -67,7 +62,6 @@ /** * The height of this {@code Rectangle2D}. * - * @profile common * @defaultvalue 0.0 */ public double getHeight() { return height; } @@ -76,7 +70,6 @@ /** * The x coordinate of the lower-right corner of this {@code Rectangle2D}. * - * @profile common * @defaultvalue {@code minX + width} */ public double getMaxX() { return maxX; } @@ -85,7 +78,6 @@ /** * The y coordinate of the lower-right corner of this {@code Rectangle2D}. * - * @profile common * @defaultvalue {@code minY + height} */ public double getMaxY() { return maxY; } @@ -119,7 +111,6 @@ /** * Tests if the specified point is inside the boundary of {@code Rectangle2D}. * - * @profile common * @param p the specified point to be tested * @return true if the specified point is inside the boundary of this * {@code Rectangle2D}; false otherwise. @@ -133,7 +124,6 @@ * Tests if the specified {@code (x, y)} coordinates are inside the boundary * of {@code Rectangle2D}. * - * @profile common * @param x the specified x coordinate to be tested * @param y the specified y coordinate to be tested * @return true if the specified {@code (x, y)} coordinates are inside the @@ -147,7 +137,6 @@ * Tests if the interior of this {@code Rectangle2D} entirely contains the * specified Rectangle2D, {@code r}. * - * @profile common * @param r The specified Rectangle2D * @return true if the specified Rectangle2D, {@code r}, is inside the * boundary of this {@code Rectangle2D}; false otherwise. @@ -161,7 +150,6 @@ * Tests if the interior of this {@code Rectangle2D} entirely contains the * specified rectangular area. * - * @profile common * @param x the x coordinate of the upper-left corner of the specified * rectangular area * @param y the y coordinate of the upper-left corner of the specified @@ -179,7 +167,6 @@ * Tests if the interior of this {@code Rectangle2D} intersects the interior * of a specified Rectangle2D, {@code r}. * - * @profile common * @param r The specified Rectangle2D * @return true if the interior of this {@code Rectangle2D} and the interior * of the specified Rectangle2D, {@code r}, intersect. @@ -193,7 +180,6 @@ * Tests if the interior of this {@code Rectangle2D} intersects the interior * of a specified rectangular area. * - * @profile common * @param x the x coordinate of the upper-left corner of the specified * rectangular area * @param y the y coordinate of the upper-left corner of the specified @@ -245,8 +231,6 @@ * The content and format of the returned string might vary between * implementations. * The returned string might be empty but cannot be {@code null}. - * - * @profile common */ @Override public String toString() { return "Rectangle2D [minX = " + minX diff --git a/javafx-ui-common/src/javafx/geometry/Side.java b/javafx-ui-common/src/javafx/geometry/Side.java --- a/javafx-ui-common/src/javafx/geometry/Side.java +++ b/javafx-ui-common/src/javafx/geometry/Side.java @@ -27,8 +27,6 @@ /** * Enum for which side of a rectangle something should be. This is used for chart titles, axis etc. - * - * @profile common */ public enum Side { /** diff --git a/javafx-ui-common/src/javafx/scene/CacheHint.java b/javafx-ui-common/src/javafx/scene/CacheHint.java --- a/javafx-ui-common/src/javafx/scene/CacheHint.java +++ b/javafx-ui-common/src/javafx/scene/CacheHint.java @@ -29,7 +29,6 @@ * Cache hints for use with {@code Node.cacheHint} * * @see Node#cacheHintProperty - * @profile common * @since JavaFX 1.3 */ public enum CacheHint { @@ -37,7 +36,6 @@ * No additional hint. The system will determine the best use of the bitmap * cache. * - * @profile common * @since JavaFX 1.3 */ DEFAULT, @@ -48,7 +46,6 @@ * maintain smooth animation. The trade-off is that this may result in * decreased visual quality. * - * @profile common * @since JavaFX 1.3 */ SPEED, @@ -66,7 +63,6 @@ * replaced with a more permissive value (such as {@code SPEED}) during the * period of the animation. * - * @profile common * @since JavaFX 1.3 */ QUALITY, @@ -76,7 +72,6 @@ * or down, it is acceptable to paint it by scaling the cached bitmap (rather * than re-rendering the node). * - * @profile common * @since JavaFX 1.3 */ SCALE, @@ -86,7 +81,6 @@ * it is acceptable to paint it by rotating the the cached bitmap (rather * than re-rendering the node). * - * @profile common * @since JavaFX 1.3 */ ROTATE, @@ -96,7 +90,6 @@ * and/or rotated, it is acceptable to paint it by scaling and/or rotating * the cached bitmap (rather than re-rendering the node). * - * @profile common * @since JavaFX 1.3 */ SCALE_AND_ROTATE, diff --git a/javafx-ui-common/src/javafx/scene/Camera.java b/javafx-ui-common/src/javafx/scene/Camera.java --- a/javafx-ui-common/src/javafx/scene/Camera.java +++ b/javafx-ui-common/src/javafx/scene/Camera.java @@ -34,7 +34,6 @@ /** * Base class for a camera used to render a scene. * - * @profile common conditional scene3d * @since JavaFX 1.3 */ public abstract class Camera { diff --git a/javafx-ui-common/src/javafx/scene/Cursor.java b/javafx-ui-common/src/javafx/scene/Cursor.java --- a/javafx-ui-common/src/javafx/scene/Cursor.java +++ b/javafx-ui-common/src/javafx/scene/Cursor.java @@ -34,110 +34,82 @@ /** * A class to encapsulate the bitmap representation of the mouse cursor. - * - * @profile common */ public abstract class Cursor { /** * The default cursor type (gets set if no cursor is defined). - * - * @profile common */ public static final Cursor DEFAULT = new StandardCursor("DEFAULT", CursorType.DEFAULT); /** * The crosshair cursor type. - * - * @profile common */ public static final Cursor CROSSHAIR = new StandardCursor("CROSSHAIR", CursorType.CROSSHAIR); /** * The text cursor type. - * - * @profile common */ public static final Cursor TEXT = new StandardCursor("TEXT", CursorType.TEXT); /** * The wait cursor type. - * - * @profile common */ public static final Cursor WAIT = new StandardCursor("WAIT", CursorType.WAIT); /** * The south-west-resize cursor type. - * - * @profile common */ public static final Cursor SW_RESIZE = new StandardCursor("SW_RESIZE", CursorType.SW_RESIZE); /** * The south-east-resize cursor type. - * - * @profile common */ public static final Cursor SE_RESIZE = new StandardCursor("SE_RESIZE", CursorType.SE_RESIZE); /** * The north-west-resize cursor type. - * - * @profile common */ public static final Cursor NW_RESIZE = new StandardCursor("NW_RESIZE", CursorType.NW_RESIZE); /** * The north-east-resize cursor type. - * - * @profile common */ public static final Cursor NE_RESIZE = new StandardCursor("NE_RESIZE", CursorType.NE_RESIZE); /** * The north-resize cursor type. - * - * @profile common */ public static final Cursor N_RESIZE = new StandardCursor("N_RESIZE", CursorType.N_RESIZE); /** * The south-resize cursor type. - * - * @profile common */ public static final Cursor S_RESIZE = new StandardCursor("S_RESIZE", CursorType.S_RESIZE); /** * The west-resize cursor type. - * - * @profile common */ public static final Cursor W_RESIZE = new StandardCursor("W_RESIZE", CursorType.W_RESIZE); /** * The east-resize cursor type. - * - * @profile common */ public static final Cursor E_RESIZE = new StandardCursor("E_RESIZE", CursorType.E_RESIZE); /** * A cursor with a hand which is open - * - * @profile common */ public static final Cursor OPEN_HAND = new StandardCursor("OPEN_HAND", CursorType.OPEN_HAND); @@ -145,8 +117,6 @@ /** * A cursor with a hand that is closed, often used when * "grabbing", for example, when panning. - * - * @profile common */ public static final Cursor CLOSED_HAND = new StandardCursor("CLOSED_HAND", CursorType.CLOSED_HAND); @@ -155,16 +125,12 @@ * The hand cursor type, resembling a pointing hand, often * used to indicate that something can be clicked, such as * a hyperlink. - * - * @profile common */ public static final Cursor HAND = new StandardCursor("HAND", CursorType.HAND); /** * The move cursor type. - * - * @profile common */ public static final Cursor MOVE = new StandardCursor("MOVE", CursorType.MOVE); @@ -174,24 +140,18 @@ * something, such that when the user releases the mouse, the * item will disappear. On Mac, this is used when dragging items * off a toolbar or in other such situations. - * - * @profile common */ public static final Cursor DISAPPEAR = new StandardCursor("DISAPPEAR", CursorType.DISAPPEAR); /** * The horizontal cursor type. - * - * @profile common */ public static final Cursor H_RESIZE = new StandardCursor("H_RESIZE", CursorType.H_RESIZE); /** * The vertical cursor type. - * - * @profile common */ public static final Cursor V_RESIZE = new StandardCursor("V_RESIZE", CursorType.V_RESIZE); @@ -199,8 +159,6 @@ /** * The none cursor type. On platforms that don't support * custom cursors, this will be the same as {@code DEFAULT}. - * - * @profile common */ public static final Cursor NONE = new StandardCursor("NONE", CursorType.NONE); diff --git a/javafx-ui-common/src/javafx/scene/Group.java b/javafx-ui-common/src/javafx/scene/Group.java --- a/javafx-ui-common/src/javafx/scene/Group.java +++ b/javafx-ui-common/src/javafx/scene/Group.java @@ -69,8 +69,6 @@ g.getChildren().add(r); } - * - * @profile common */ @DefaultProperty("children") public class Group extends Parent { diff --git a/javafx-ui-common/src/javafx/scene/ImageCursor.java b/javafx-ui-common/src/javafx/scene/ImageCursor.java --- a/javafx-ui-common/src/javafx/scene/ImageCursor.java +++ b/javafx-ui-common/src/javafx/scene/ImageCursor.java @@ -60,7 +60,6 @@ image.getHeight() /2)); * * - * @profile common * @since JavaFX 1.3 */ public class ImageCursor extends Cursor { @@ -221,7 +220,6 @@ * @param preferredWidth the preferred width of the cursor * @param preferredHeight the preferred height of the cursor * @return the supported cursor size - * @profile common * @since JavaFX 1.3 */ public static Dimension2D getBestSize(double preferredWidth, @@ -249,7 +247,6 @@ * * @return the maximum number of colors supported in a custom image cursor * palette - * @profile common * @since JavaFX 1.3 */ public static int getMaximumColors() { @@ -272,7 +269,6 @@ * @param hotspotY the Y coordinate of the hotspot within the first image * in the images sequence * @return a cursor created from the best image - * @profile common * @since JavaFX 1.3 */ public static ImageCursor chooseBestCursor( diff --git a/javafx-ui-common/src/javafx/scene/Node.java b/javafx-ui-common/src/javafx/scene/Node.java --- a/javafx-ui-common/src/javafx/scene/Node.java +++ b/javafx-ui-common/src/javafx/scene/Node.java @@ -305,8 +305,6 @@ * For further information about CSS and how to apply CSS styles * to nodes, see the CSS Reference * Guide. - * - * @profile common */ @IDProperty("id") public abstract class Node implements EventTarget { @@ -599,7 +597,6 @@ * The parent of this {@code Node}. If this {@code Node} has not been added * to a scene graph, then parent will be null. * - * @profile common * @defaultvalue null */ private ReadOnlyObjectWrapper parent; @@ -675,7 +672,6 @@ * The {@link Scene} that this {@code Node} is part of. If the Node is not * part of a scene, then this variable will be null. * - * @profile common * @defaultvalue null */ private ReadOnlyObjectWrapper scene; @@ -760,7 +756,6 @@ * be used to find this node as follows: scene.lookup("#myId");. *

* - * @profile common * @defaultvalue null */ private StringProperty id; @@ -780,7 +775,6 @@ * * @return the id assigned to this {@code Node} using the {@code setId} * method or {@code null}, if no id has been assigned. - * @profile common * @defaultvalue null */ public final String getId() { @@ -817,7 +811,6 @@ * each element of the list is a style class to which this Node belongs. * * @see CSS3 class selectors - * @profile common * @defaultvalue null */ private ObservableList styleClass = new TrackableObservableList() { @@ -855,7 +848,6 @@ * HTML element. Note that, like the HTML style attribute, this * variable contains style properties and values and not the * selector portion of a style rule. - * @profile common * @defaultvalue empty string */ private StringProperty style; @@ -868,7 +860,6 @@ * selector portion of a style rule. * @param value The inline CSS style to use for this {@code Node}. * {@code null} is implicitly converted to an empty String. - * @profile common * @defaultvalue empty string */ public final void setStyle(String value) { @@ -882,7 +873,6 @@ * HTML element. Note that, like the HTML style attribute, this * variable contains style properties and values and not the * selector portion of a style rule. - * @profile common * @defaultvalue empty string * @return The inline CSS style associated with this {@code Node}. * If this {@code Node} does not have an inline style, @@ -930,7 +920,6 @@ * keyboard focus, and never maintain keyboard focus when they become * invisible. * - * @profile common * @defaultvalue true */ private BooleanProperty visible; @@ -994,7 +983,6 @@ * used. If no Node in the scene graph defines a cursor, then the cursor * of the {@code Scene} will be used. * - * @profile common * @defaultvalue null */ public final ObjectProperty cursorProperty() { @@ -1028,7 +1016,6 @@ * will cause its children to be rendered in order without Z-buffering * applied between those children. * - * @profile common * @defaultvalue 1.0 */ private DoubleProperty opacity; @@ -1079,7 +1066,6 @@ * parent such as a Group and the equivalent of SRC_OVER for a single Node. * * @defaultvalue null - * @profile common conditional effect */ private javafx.beans.property.ObjectProperty blendMode; @@ -1151,7 +1137,6 @@ * will cause its children to be rendered in order without Z-buffering * applied between those children. * - * @profile common conditional shape_clip * @defaultvalue null */ public final ObjectProperty clipProperty() { @@ -1204,7 +1189,6 @@ * any of its ancestors, or any of its descendants. * * @see #cacheHintProperty - * @profile common * @defaultvalue false */ public final BooleanProperty cacheProperty() { @@ -1265,7 +1249,6 @@ * any of its ancestors, or any of its descendants. * * @see #cacheProperty - * @profile common * @since JavaFX 1.3 * @defaultvalue CacheHint.DEFAULT */ @@ -1296,7 +1279,6 @@ * to be rendered in order without Z-buffering applied between those * children. * - * @profile common conditional effect * @defaultvalue null */ public final ObjectProperty effectProperty() { @@ -1334,7 +1316,6 @@ * arguments. * * @see javafx.scene.Scene - * @profile common conditional scene3d * @defaultvalue INHERIT */ public final ObjectProperty depthTestProperty() { @@ -1399,7 +1380,6 @@ * ancestor being disabled even if the individual {@code disable} state on * this {@code Node} is {@code false}. * - * @profile common * @defaultvalue false */ public final BooleanProperty disableProperty() { @@ -1420,7 +1400,6 @@ * by intersecting with the geometric shape of this node. * * @defaultvalue false - * @profile common * @since JavaFX 1.3 */ private BooleanProperty pickOnBounds; @@ -1457,7 +1436,6 @@ *

* A disabled {@code Node} does not receive mouse or key events. * - * @profile common * @defaultvalue false */ private ReadOnlyBooleanWrapper disabled; @@ -1513,7 +1491,6 @@ * be used to find this node as follows: scene.lookup("#myId");. *

* - * @profile common * @param selector The css selector of the node to find * @return The first node, starting from this {@code Node}, which matches * the CSS {@code selector}, null if none is found. @@ -1529,7 +1506,6 @@ * the given CSS selector. If no matches are found, an empty unmodifiable set is * returned. The set is explicitly unordered. * - * @profile common * @param selector The css selector of the nodes to find * @return All nodes, starting from and including this {@code Node}, which match * the CSS {@code selector}. The returned set is always unordered and @@ -1566,8 +1542,6 @@ * z-order. This is accomplished by moving this {@code Node} to the * first position in its parent's {@code content} ObservableList. * This function has no effect if this {@code Node} is not part of a group. - * - * @profile common */ public void toBack() { if (getParent() != null) { @@ -1580,8 +1554,6 @@ * z-order. This is accomplished by moving this {@code Node} to the * last position in its parent's {@code content} ObservableList. * This function has no effect if this {@code Node} is not part of a group. - * - * @profile common */ public void toFront() { if (getParent() != null) { @@ -2476,8 +2448,6 @@ * this variable. For example, the x or y variables of a shape, or * translateX, translateY should never be bound to boundsInParent * for the purpose of positioning the node. - * - * @profile common */ public final ReadOnlyObjectProperty boundsInParentProperty() { return getMiscProperties().boundsInParentProperty(); @@ -2513,8 +2483,6 @@ * of these values in a node to an expression that depends upon this variable. * For example, the x or y variables of a shape should never be bound * to boundsInLocal for the purpose of positioning the node. - * - * @profile common */ public final ReadOnlyObjectProperty boundsInLocalProperty() { return getMiscProperties().boundsInLocalProperty(); @@ -3141,8 +3109,6 @@ * coordinate space of this {@code Node}) is contained within the shape of * this {@code Node}. Note that this method does not take visibility into * account; the test is based on the geometry of this {@code Node} only. - * - * @profile common */ public boolean contains(double localX, double localY) { if (containsBounds(localX, localY)) { @@ -3209,8 +3175,6 @@ * coordinate space of this {@code Node}) is contained within the shape of * this {@code Node}. Note that this method does not take visibility into * account; the test is based on the geometry of this {@code Node} only. - * - * @profile common */ public boolean contains(Point2D localPoint) { return contains(localPoint.getX(), localPoint.getY()); @@ -3223,8 +3187,6 @@ * account; the test is based on the geometry of this {@code Node} only. * The default behavior of this function is simply to check if the * given coordinates intersect with the local bounds. - * - * @profile common */ public boolean intersects(double localX, double localY, double localWidth, double localHeight) { BaseBounds tempBounds = TempState.getInstance().bounds; @@ -3243,8 +3205,6 @@ * account; the test is based on the geometry of this {@code Node} only. * The default behavior of this function is simply to check if the * given coordinates intersect with the local bounds. - * - * @profile common */ public boolean intersects(Bounds localBounds) { return intersects(localBounds.getMinX(), localBounds.getMinY(), localBounds.getWidth(), localBounds.getHeight()); @@ -3253,8 +3213,6 @@ /** * Transforms a point from the coordinate space of the {@link Scene} * into the local coordinate space of this {@code Node}. - * - * @profile common */ public Point2D sceneToLocal(double sceneX, double sceneY) { final com.sun.javafx.geom.Point2D tempPt = @@ -3271,8 +3229,6 @@ /** * Transforms a point from the coordinate space of the {@link javafx.scene.Scene} * into the local coordinate space of this {@code Node}. - * - * @profile common */ public Point2D sceneToLocal(Point2D scenePoint) { return sceneToLocal(scenePoint.getX(), scenePoint.getY()); @@ -3295,8 +3251,6 @@ * Transforms a rectangle from the coordinate space of the * {@link javafx.scene.Scene} into the local coordinate space of this * {@code Node}. - * - * @profile common */ public Bounds sceneToLocal(Bounds sceneBounds) { // Do a quick update of localToParentTransform so that we can determine @@ -3324,8 +3278,6 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its {@link javafx.scene.Scene}. - * - * @profile common */ public Point2D localToScene(double localX, double localY) { final com.sun.javafx.geom.Point2D tempPt = @@ -3338,8 +3290,6 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its {@link javafx.scene.Scene}. - * - * @profile common */ public Point2D localToScene(Point2D localPoint) { return localToScene(localPoint.getX(), localPoint.getY()); @@ -3356,8 +3306,6 @@ /** * Transforms a bounds from the local coordinate space of this * {@code Node} into the coordinate space of its {@link javafx.scene.Scene}. - * - * @profile common */ public Bounds localToScene(Bounds localBounds) { // Do a quick update of localToParentTransform so that we can determine @@ -3386,8 +3334,6 @@ /** * Transforms a point from the coordinate space of the parent into the * local coordinate space of this {@code Node}. - * - * @profile common */ public Point2D parentToLocal(double parentX, double parentY) { final com.sun.javafx.geom.Point2D tempPt = @@ -3404,8 +3350,6 @@ /** * Transforms a point from the coordinate space of the parent into the * local coordinate space of this {@code Node}. - * - * @profile common */ public Point2D parentToLocal(Point2D parentPoint) { return parentToLocal(parentPoint.getX(), parentPoint.getY()); @@ -3426,8 +3370,6 @@ /** * Transforms a rectangle from the coordinate space of the parent into the * local coordinate space of this {@code Node}. - * - * @profile common */ public Bounds parentToLocal(Bounds parentBounds) { // Do a quick update of localToParentTransform so that we can determine @@ -3455,8 +3397,6 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its parent. - * - * @profile common */ public Point2D localToParent(double localX, double localY) { final com.sun.javafx.geom.Point2D tempPt = @@ -3469,8 +3409,6 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its parent. - * - * @profile common */ public Point2D localToParent(Point2D localPoint) { return localToParent(localPoint.getX(), localPoint.getY()); @@ -3487,8 +3425,6 @@ /** * Transforms a bounds from the local coordinate space of this * {@code Node} into the coordinate space of its parent. - * - * @profile common */ public Bounds localToParent(Bounds localBounds) { // Do a quick update of localToParentTransform so that we can determine @@ -3773,7 +3709,6 @@ * {@link javafx.application.ConditionalFeature#SCENE3D ConditionalFeature.SCENE3D} * for more information. * - * @profile common conditional scene3d * @treatasprivate implementation detail * @deprecated This is an internal API that is not intended for use and will be removed in the next version */ @@ -3823,7 +3758,6 @@ * before {@link #translateXProperty translateX}, {@link #translateYProperty translateY}, {@link #scaleXProperty scaleX}, and * {@link #scaleYProperty scaleY}, {@link #rotateProperty rotate} transforms. * - * @profile common * @defaultvalue empty */ public final ObservableList getTransforms() { @@ -3855,7 +3789,6 @@ * This variable can be used to alter the location of a node without disturbing * its {@link #layoutBoundsProperty layoutBounds}, which makes it useful for animating a node's location. * - * @profile common * @defaultvalue 0 */ public final DoubleProperty translateXProperty() { @@ -3883,7 +3816,6 @@ * This variable can be used to alter the location of a node without disturbing * its {@link #layoutBoundsProperty layoutBounds}, which makes it useful for animating a node's location. * - * @profile common * @defaultvalue 0 */ public final DoubleProperty translateYProperty() { @@ -3914,7 +3846,6 @@ * {@link javafx.application.ConditionalFeature#SCENE3D ConditionalFeature.SCENE3D} * for more information. * - * @profile common conditional scene3d * @defaultvalue 0 * @since JavaFX 1.3 */ @@ -3943,7 +3874,6 @@ * The pivot point about which the scale occurs is the center of the * untransformed {@link #layoutBoundsProperty layoutBounds}. * - * @profile common * @defaultvalue 1.0 */ public final DoubleProperty scaleXProperty() { @@ -3971,7 +3901,6 @@ * The pivot point about which the scale occurs is the center of the * untransformed {@link #layoutBoundsProperty layoutBounds}. * - * @profile common * @defaultvalue 1.0 */ public final DoubleProperty scaleYProperty() { @@ -4004,7 +3933,6 @@ * {@link javafx.application.ConditionalFeature#SCENE3D ConditionalFeature.SCENE3D} * for more information. * - * @profile common conditional scene3d * @defaultvalue 1.0 * @since JavaFX 1.3 */ @@ -4044,7 +3972,6 @@ * ObservableList, and add a {@link javafx.scene.transform.Rotate} transform, * which has a user-specifiable pivot point. * - * @profile common * @defaultvalue 0.0 */ public final DoubleProperty rotateProperty() { @@ -4068,7 +3995,6 @@ * {@link javafx.application.ConditionalFeature#SCENE3D ConditionalFeature.SCENE3D} * for more information. * - * @profile common conditional scene3d * @defaultvalue Rotate.Z_AXIS * @since JavaFX 1.3 */ @@ -4937,7 +4863,6 @@ * have a mouse. Future implementations may provide alternative means of * supporting hover. * - * @profile common * @defaultvalue false */ private ReadOnlyBooleanWrapper hover; @@ -4986,7 +4911,6 @@ * the primary mouse button is down, though subclasses may define other * mouse button state or key state to cause the node to be "pressed". * - * @profile common * @defaultvalue false */ private ReadOnlyBooleanWrapper pressed; @@ -5043,8 +4967,6 @@ /** * Defines a function to be called when a context menu * has been requested on this {@code Node}. - * - * @profile common */ public final ObjectProperty> onContextMenuRequestedProperty() { @@ -5064,8 +4986,6 @@ /** * Defines a function to be called when a mouse button has been clicked * (pressed and released) on this {@code Node}. - * - * @profile common */ public final ObjectProperty> onMouseClickedProperty() { @@ -5085,8 +5005,6 @@ /** * Defines a function to be called when a mouse button is pressed * on this {@code Node} and then dragged. - * - * @profile common */ public final ObjectProperty> onMouseDraggedProperty() { @@ -5142,8 +5060,6 @@ /** * Defines a function to be called when mouse cursor moves within * this {@code Node} but no buttons have been pushed. - * - * @profile common */ public final ObjectProperty> onMouseMovedProperty() { @@ -5163,8 +5079,6 @@ /** * Defines a function to be called when a mouse button * has been pressed on this {@code Node}. - * - * @profile common */ public final ObjectProperty> onMousePressedProperty() { @@ -5184,8 +5098,6 @@ /** * Defines a function to be called when a mouse button * has been released on this {@code Node}. - * - * @profile common */ public final ObjectProperty> onMouseReleasedProperty() { @@ -5205,8 +5117,6 @@ /** * Defines a function to be called when drag gesture has been * detected. This is the right place to start drag and drop operation. - * - * @profile common */ public final ObjectProperty> onDragDetectedProperty() { @@ -5225,8 +5135,6 @@ /** * Defines a function to be called when user performs a scrolling action. - * - * @profile common */ public final ObjectProperty> onScrollProperty() { @@ -5246,8 +5154,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * progresses within this {@code Node}. - * - * @profile common */ public final ObjectProperty> onMouseDragOverProperty() { @@ -5267,8 +5173,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * ends (by releasing mouse button) within this {@code Node}. - * - * @profile common */ public final ObjectProperty> onMouseDragReleasedProperty() { @@ -5288,8 +5192,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * enters this {@code Node}. - * - * @profile common */ public final ObjectProperty> onMouseDragEnteredProperty() { @@ -5309,8 +5211,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * leaves this {@code Node}. - * - * @profile common */ public final ObjectProperty> onMouseDragExitedProperty() { @@ -5339,8 +5239,6 @@ * {@code Node} has input focus and a key has been pressed. The function * is called only if the event hasn't been already consumed during its * capturing or bubbling phase. - * - * @profile common */ public final ObjectProperty> onKeyPressedProperty() { @@ -5362,8 +5260,6 @@ * {@code Node} has input focus and a key has been released. The function * is called only if the event hasn't been already consumed during its * capturing or bubbling phase. - * - * @profile common */ public final ObjectProperty> onKeyReleasedProperty() { @@ -5385,8 +5281,6 @@ * {@code Node} has input focus and a key has been typed. The function * is called only if the event hasn't been already consumed during its * capturing or bubbling phase. - * - * @profile common */ public final ObjectProperty> onKeyTypedProperty() { @@ -5419,8 +5313,6 @@ *

* When the {@code Node} loses the input focus, the JavaFX runtime * automatically commits the existing composed text if any. - * - * @profile common conditional input_method */ public final ObjectProperty> onInputMethodTextChangedProperty() { @@ -5457,7 +5349,6 @@ * owner, and the scene must be in a {@code Stage} that is visible * and active. See {@code requestFocus()} for more information. * - * @profile common * @defaultvalue false */ private ReadOnlyBooleanWrapper focused; @@ -5514,7 +5405,6 @@ * unless the focus had been set explicitly via a call * to {@code requestFocus()}. * - * @profile common * @defaultvalue false */ private BooleanProperty focusTraversable; @@ -5589,8 +5479,6 @@ * node. The focus owner will not actually have the input focus, however, * unless the scene belongs to a {@code Stage} that is both visible * and active. - * - * @profile common */ public void requestFocus() { if (getScene() != null) { diff --git a/javafx-ui-common/src/javafx/scene/ParallelCamera.java b/javafx-ui-common/src/javafx/scene/ParallelCamera.java --- a/javafx-ui-common/src/javafx/scene/ParallelCamera.java +++ b/javafx-ui-common/src/javafx/scene/ParallelCamera.java @@ -40,7 +40,6 @@ * down and the Z axis pointing away from the viewer (into the screen). The * units are in pixel coordinates. * - * @profile common conditional scene3d * @since JavaFX 1.3 */ public class ParallelCamera extends Camera { diff --git a/javafx-ui-common/src/javafx/scene/Parent.java b/javafx-ui-common/src/javafx/scene/Parent.java --- a/javafx-ui-common/src/javafx/scene/Parent.java +++ b/javafx-ui-common/src/javafx/scene/Parent.java @@ -225,7 +225,6 @@ * {@code

Throws AssignToBoundException} if the same node * appears in two different bound ObservableList. * - * @profile common * @defaultvalue empty * @since JavaFX 1.3 */ @@ -997,8 +996,6 @@ * contents. For additional information about using CSS with the * scene graph, see the CSS Reference * Guide. - * - * @profile common */ private final ObservableList stylesheets = new TrackableObservableList() { @Override diff --git a/javafx-ui-common/src/javafx/scene/PerspectiveCamera.java b/javafx-ui-common/src/javafx/scene/PerspectiveCamera.java --- a/javafx-ui-common/src/javafx/scene/PerspectiveCamera.java +++ b/javafx-ui-common/src/javafx/scene/PerspectiveCamera.java @@ -46,7 +46,6 @@ * down and the Z axis pointing away from the viewer (into the screen). The * units are in pixel coordinates at the projection plane (Z=0). * - * @profile common conditional scene3d * @since JavaFX 1.3 */ public class PerspectiveCamera extends Camera { diff --git a/javafx-ui-common/src/javafx/scene/Scene.java b/javafx-ui-common/src/javafx/scene/Scene.java --- a/javafx-ui-common/src/javafx/scene/Scene.java +++ b/javafx-ui-common/src/javafx/scene/Scene.java @@ -147,8 +147,6 @@ root.getChildren().add(r); * *

- * - * @profile common */ @DefaultProperty("root") public class Scene implements EventTarget { @@ -256,7 +254,6 @@ * other than the JavaFX Application Thread. * * @see javafx.scene.Node#setDepthTest(DepthTest) - * @profile common conditional scene3d */ public Scene(Parent root, @Default("-1") double width, @Default("-1") double height, boolean depthBuffer) { this(root, width, height, Color.WHITE, depthBuffer); @@ -718,8 +715,6 @@ /** * The width of this {@code Scene} - * - * @profile common */ private ReadOnlyDoubleWrapper width; @@ -763,8 +758,6 @@ /** * The height of this {@code Scene} - * - * @profile common */ private ReadOnlyDoubleWrapper height; @@ -814,7 +807,6 @@ * {@link javafx.application.ConditionalFeature#SCENE3D ConditionalFeature.SCENE3D} * for more information. * - * @profile common conditional scene3d * @defaultvalue null * @since JavaFX 1.3 */ @@ -875,7 +867,6 @@ * with transparency are supported, but what is painted behind it will * depend on the platform. The default value is the color white. * - * @profile common * @defaultvalue WHITE */ private ObjectProperty fill; @@ -1127,8 +1118,6 @@ * @param selector The css selector to look up * @return the {@code Node} in the scene which matches the CSS {@code selector}, * or {@code null} if none is found. - * - * @profile common */ public Node lookup(String selector) { return getRoot().lookup(selector); @@ -1138,8 +1127,6 @@ * contents. For additional information about using CSS with the * scene graph, see the CSS Reference * Guide. - * - * @profile common */ private final ObservableList stylesheets = new TrackableObservableList() { @Override @@ -3437,8 +3424,6 @@ /** * Defines a function to be called when a mouse button has been clicked * (pressed and released) on this {@code Scene}. - * - * @profile common */ private ObjectProperty> onContextMenuRequested; @@ -3483,8 +3468,6 @@ /** * Defines a function to be called when a mouse button has been clicked * (pressed and released) on this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseClicked; @@ -3522,8 +3505,6 @@ /** * Defines a function to be called when a mouse button is pressed * on this {@code Scene} and then dragged. - * - * @profile common */ private ObjectProperty> onMouseDragged; @@ -3560,8 +3541,6 @@ /** * Defines a function to be called when the mouse enters this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseEntered; @@ -3598,8 +3577,6 @@ /** * Defines a function to be called when the mouse exits this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseExited; @@ -3637,8 +3614,6 @@ /** * Defines a function to be called when mouse cursor moves within * this {@code Scene} but no buttons have been pushed. - * - * @profile common */ private ObjectProperty> onMouseMoved; @@ -3676,8 +3651,6 @@ /** * Defines a function to be called when a mouse button * has been pressed on this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMousePressed; @@ -3715,8 +3688,6 @@ /** * Defines a function to be called when a mouse button * has been released on this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseReleased; @@ -3754,8 +3725,6 @@ /** * Defines a function to be called when drag gesture has been * detected. This is the right place to start drag and drop operation. - * - * @profile common */ private ObjectProperty> onDragDetected; @@ -3792,8 +3761,6 @@ /** * Defines a function to be called when user performs a scrolling action. - * - * @profile common */ private ObjectProperty> onScroll; @@ -3831,8 +3798,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * progresses within this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseDragOver; @@ -3870,8 +3835,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * ends within this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseDragReleased; @@ -3909,8 +3872,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * enters this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseDragEntered; @@ -3948,8 +3909,6 @@ /** * Defines a function to be called when a full press-drag-release gesture * exits this {@code Scene}. - * - * @profile common */ private ObjectProperty> onMouseDragExited; @@ -4311,8 +4270,6 @@ * {@code Scene} has input focus and a key has been pressed. The function * is called only if the event hasn't been already consumed during its * capturing or bubbling phase. - * - * @profile common */ private ObjectProperty> onKeyPressed; @@ -4352,8 +4309,6 @@ * {@code Scene} has input focus and a key has been released. The function * is called only if the event hasn't been already consumed during its * capturing or bubbling phase. - * - * @profile common */ private ObjectProperty> onKeyReleased; @@ -4393,8 +4348,6 @@ * {@code Scene} has input focus and a key has been typed. The function * is called only if the event hasn't been already consumed during its * capturing or bubbling phase. - * - * @profile common */ private ObjectProperty> onKeyTyped; @@ -4448,8 +4401,6 @@ *

* When the {@code Node} loses the input focus, the JavaFX runtime * automatically commits the existing composed text if any. - * - * @profile common conditional input_method */ private ObjectProperty> onInputMethodTextChanged; diff --git a/javafx-ui-common/src/javafx/scene/effect/Blend.java b/javafx-ui-common/src/javafx/scene/effect/Blend.java --- a/javafx-ui-common/src/javafx/scene/effect/Blend.java +++ b/javafx-ui-common/src/javafx/scene/effect/Blend.java @@ -82,8 +82,6 @@ g.getChildren().add(r); g.getChildren().add(t); - * - * @profile common conditional effect */ public class Blend extends Effect { diff --git a/javafx-ui-common/src/javafx/scene/effect/BlendMode.java b/javafx-ui-common/src/javafx/scene/effect/BlendMode.java --- a/javafx-ui-common/src/javafx/scene/effect/BlendMode.java +++ b/javafx-ui-common/src/javafx/scene/effect/BlendMode.java @@ -54,8 +54,6 @@ g.getChildren().add(r); g.getChildren().add(c); - * - * @profile common conditional effect */ public enum BlendMode { diff --git a/javafx-ui-common/src/javafx/scene/effect/Bloom.java b/javafx-ui-common/src/javafx/scene/effect/Bloom.java --- a/javafx-ui-common/src/javafx/scene/effect/Bloom.java +++ b/javafx-ui-common/src/javafx/scene/effect/Bloom.java @@ -70,8 +70,6 @@ g.getChildren().add(r); g.getChildren().add(t); - * - * @profile common conditional effect */ public class Bloom extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/BlurType.java b/javafx-ui-common/src/javafx/scene/effect/BlurType.java --- a/javafx-ui-common/src/javafx/scene/effect/BlurType.java +++ b/javafx-ui-common/src/javafx/scene/effect/BlurType.java @@ -47,8 +47,6 @@ /** * Represents the type of blur algorithm that is used to soften * a {@code Shadow} effect. - * - * @profile common conditional effect */ public enum BlurType { diff --git a/javafx-ui-common/src/javafx/scene/effect/BoxBlur.java b/javafx-ui-common/src/javafx/scene/effect/BoxBlur.java --- a/javafx-ui-common/src/javafx/scene/effect/BoxBlur.java +++ b/javafx-ui-common/src/javafx/scene/effect/BoxBlur.java @@ -66,8 +66,6 @@ t.setEffect(bb); - * - * @profile common conditional effect */ public class BoxBlur extends Effect { diff --git a/javafx-ui-common/src/javafx/scene/effect/ColorAdjust.java b/javafx-ui-common/src/javafx/scene/effect/ColorAdjust.java --- a/javafx-ui-common/src/javafx/scene/effect/ColorAdjust.java +++ b/javafx-ui-common/src/javafx/scene/effect/ColorAdjust.java @@ -41,8 +41,6 @@ /** * An effect that allows for per-pixel adjustments of hue, saturation, * brightness, and contrast. - * - * @profile common conditional effect */ public class ColorAdjust extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/ColorInput.java b/javafx-ui-common/src/javafx/scene/effect/ColorInput.java --- a/javafx-ui-common/src/javafx/scene/effect/ColorInput.java +++ b/javafx-ui-common/src/javafx/scene/effect/ColorInput.java @@ -46,8 +46,6 @@ * with the given {@code Paint}. This is equivalent to rendering a * filled rectangle into an image and using an {@code ImageInput} effect, * except that it is more convenient and potentially much more efficient. - * - * @profile common conditional effect */ public class ColorInput extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/DisplacementMap.java b/javafx-ui-common/src/javafx/scene/effect/DisplacementMap.java --- a/javafx-ui-common/src/javafx/scene/effect/DisplacementMap.java +++ b/javafx-ui-common/src/javafx/scene/effect/DisplacementMap.java @@ -112,8 +112,6 @@ g.getChildren().add(t); - * - * @profile common conditional effect */ public class DisplacementMap extends Effect { @Override diff --git a/javafx-ui-common/src/javafx/scene/effect/DropShadow.java b/javafx-ui-common/src/javafx/scene/effect/DropShadow.java --- a/javafx-ui-common/src/javafx/scene/effect/DropShadow.java +++ b/javafx-ui-common/src/javafx/scene/effect/DropShadow.java @@ -80,8 +80,6 @@ g.getChildren().add(t); g.getChildren().add(c); - * - * @profile common conditional effect */ public class DropShadow extends Effect { private boolean changeIsLocal; diff --git a/javafx-ui-common/src/javafx/scene/effect/Effect.java b/javafx-ui-common/src/javafx/scene/effect/Effect.java --- a/javafx-ui-common/src/javafx/scene/effect/Effect.java +++ b/javafx-ui-common/src/javafx/scene/effect/Effect.java @@ -56,8 +56,6 @@ * Note: this is a conditional feature. See * {@link javafx.application.ConditionalFeature#EFFECT ConditionalFeature.EFFECT} * for more information. - * - * @profile common conditional effect */ public abstract class Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/FloatMap.java b/javafx-ui-common/src/javafx/scene/effect/FloatMap.java --- a/javafx-ui-common/src/javafx/scene/effect/FloatMap.java +++ b/javafx-ui-common/src/javafx/scene/effect/FloatMap.java @@ -36,8 +36,6 @@ /** * A buffer that contains floating point data, intended for use as a parameter * to effects such as {@link DisplacementMap}. - * - * @profile common conditional effect */ public class FloatMap { private com.sun.scenario.effect.FloatMap map; diff --git a/javafx-ui-common/src/javafx/scene/effect/GaussianBlur.java b/javafx-ui-common/src/javafx/scene/effect/GaussianBlur.java --- a/javafx-ui-common/src/javafx/scene/effect/GaussianBlur.java +++ b/javafx-ui-common/src/javafx/scene/effect/GaussianBlur.java @@ -58,8 +58,6 @@ t.setEffect(new GaussianBlur()); - * - * @profile common conditional effect */ public class GaussianBlur extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/Glow.java b/javafx-ui-common/src/javafx/scene/effect/Glow.java --- a/javafx-ui-common/src/javafx/scene/effect/Glow.java +++ b/javafx-ui-common/src/javafx/scene/effect/Glow.java @@ -41,8 +41,6 @@ /** * A high-level effect that makes the input image appear to glow, * based on a configurable threshold. - * - * @profile common conditional effect */ public class Glow extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/ImageInput.java b/javafx-ui-common/src/javafx/scene/effect/ImageInput.java --- a/javafx-ui-common/src/javafx/scene/effect/ImageInput.java +++ b/javafx-ui-common/src/javafx/scene/effect/ImageInput.java @@ -44,8 +44,6 @@ /** * A type of source effect that simply passes the given {@code Image} * through, unmodified, as an input to another {@code Effect}. - * - * @profile common conditional effect */ public class ImageInput extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/InnerShadow.java b/javafx-ui-common/src/javafx/scene/effect/InnerShadow.java --- a/javafx-ui-common/src/javafx/scene/effect/InnerShadow.java +++ b/javafx-ui-common/src/javafx/scene/effect/InnerShadow.java @@ -63,8 +63,6 @@ t.setFill(Color.YELLOW); t.setFont(Font.font(null, FontWeight.BOLD, 80)); - * - * @profile common conditional effect */ public class InnerShadow extends Effect { private boolean changeIsLocal; diff --git a/javafx-ui-common/src/javafx/scene/effect/Light.java b/javafx-ui-common/src/javafx/scene/effect/Light.java --- a/javafx-ui-common/src/javafx/scene/effect/Light.java +++ b/javafx-ui-common/src/javafx/scene/effect/Light.java @@ -37,8 +37,6 @@ /** * The abstract base class for all light implementations. - * - * @profile common conditional effect */ public abstract class Light { @@ -177,8 +175,6 @@ r.setWidth(t.getLayoutBounds().getWidth() + 30); r.setHeight(t.getLayoutBounds().getHeight() + 20); - * - * @profile common conditional effect */ public static class Distant extends Light { /** @@ -340,8 +336,6 @@ r.setWidth(t.getLayoutBounds().getWidth() + 30); r.setHeight(t.getLayoutBounds().getHeight() + 20); - * - * @profile common conditional effect */ public static class Point extends Light { /** @@ -557,7 +551,6 @@ r.setHeight(t.getLayoutBounds().getHeight() + 20); * - * @profile common conditional effect */ public static class Spot extends Light.Point { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/Lighting.java b/javafx-ui-common/src/javafx/scene/effect/Lighting.java --- a/javafx-ui-common/src/javafx/scene/effect/Lighting.java +++ b/javafx-ui-common/src/javafx/scene/effect/Lighting.java @@ -69,8 +69,6 @@ t.setEffect(l); - * - * @profile common conditional effect */ public class Lighting extends Effect { @Override diff --git a/javafx-ui-common/src/javafx/scene/effect/MotionBlur.java b/javafx-ui-common/src/javafx/scene/effect/MotionBlur.java --- a/javafx-ui-common/src/javafx/scene/effect/MotionBlur.java +++ b/javafx-ui-common/src/javafx/scene/effect/MotionBlur.java @@ -61,8 +61,6 @@ t.setEffect(mb); - * - * @profile common conditional effect */ public class MotionBlur extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/PerspectiveTransform.java b/javafx-ui-common/src/javafx/scene/effect/PerspectiveTransform.java --- a/javafx-ui-common/src/javafx/scene/effect/PerspectiveTransform.java +++ b/javafx-ui-common/src/javafx/scene/effect/PerspectiveTransform.java @@ -92,8 +92,6 @@ g.getChildren().add(r); g.getChildren().add(t); - * - * @profile common conditional effect */ public class PerspectiveTransform extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/Reflection.java b/javafx-ui-common/src/javafx/scene/effect/Reflection.java --- a/javafx-ui-common/src/javafx/scene/effect/Reflection.java +++ b/javafx-ui-common/src/javafx/scene/effect/Reflection.java @@ -65,8 +65,6 @@ t.setEffect(r); - * - * @profile common conditional effect */ public class Reflection extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/SepiaTone.java b/javafx-ui-common/src/javafx/scene/effect/SepiaTone.java --- a/javafx-ui-common/src/javafx/scene/effect/SepiaTone.java +++ b/javafx-ui-common/src/javafx/scene/effect/SepiaTone.java @@ -41,8 +41,6 @@ /** * A filter that produces a sepia tone effect, similar to antique photographs. - * - * @profile common conditional effect */ public class SepiaTone extends Effect { /** diff --git a/javafx-ui-common/src/javafx/scene/effect/Shadow.java b/javafx-ui-common/src/javafx/scene/effect/Shadow.java --- a/javafx-ui-common/src/javafx/scene/effect/Shadow.java +++ b/javafx-ui-common/src/javafx/scene/effect/Shadow.java @@ -52,8 +52,6 @@ * combines this {@code Shadow} effect with an original graphic for ease * of adding a shadow to an existing scene graph {@code Node} with a * single effect. - * - * @profile common conditional effect */ public class Shadow extends Effect { private boolean changeIsLocal; diff --git a/javafx-ui-common/src/javafx/scene/image/Image.java b/javafx-ui-common/src/javafx/scene/image/Image.java --- a/javafx-ui-common/src/javafx/scene/image/Image.java +++ b/javafx-ui-common/src/javafx/scene/image/Image.java @@ -86,16 +86,12 @@ Image image4 = new Image("flower.png", 0, 100, false, false); - - * - * @profile common */ public class Image { /** * The string representing the URL to use in fetching the pixel data. * * @defaultvalue empty string - * @profile common */ private final String url; @@ -123,7 +119,6 @@ * is 100%. * * @defaultvalue 0 - * @profile common */ private ReadOnlyDoubleWrapper progress; @@ -157,7 +152,6 @@ * attributes. * * @defaultvalue 0 - * @profile common */ private final double requestedWidth; @@ -186,7 +180,6 @@ * attributes. * * @defaultvalue 0 - * @profile common */ private final double requestedHeight; @@ -208,8 +201,6 @@ /** * The image width or {@code 0} if the image loading fails. While the image * is being loaded it is set to {@code 0}. - * - * @profile common */ private DoublePropertyImpl width; @@ -267,8 +258,6 @@ /** * The image height or {@code 0} if the image loading fails. While the image * is being loaded it is set to {@code 0}. - * - * @profile common */ private DoublePropertyImpl height; @@ -317,7 +306,6 @@ *

* * @defaultvalue false - * @profile common */ private final boolean preserveRatio; @@ -369,7 +357,6 @@ *

* * @defaultvalue true - * @profile common */ private final boolean smooth; @@ -396,7 +383,6 @@ * Indicates whether the image is being loaded in the background. * * @defaultvalue false - * @profile common */ private final boolean backgroundLoading; @@ -412,7 +398,6 @@ * Indicates whether an error was detected while loading an image. * * @defaultvalue false - * @profile common */ private ReadOnlyBooleanWrapper error; @@ -639,8 +624,6 @@ * *

Has no effect if this image isn't loaded in background or if loading * has already completed.

- * - * @profile common */ public void cancel() { if (backgroundTask != null) { diff --git a/javafx-ui-common/src/javafx/scene/image/ImageView.java b/javafx-ui-common/src/javafx/scene/image/ImageView.java --- a/javafx-ui-common/src/javafx/scene/image/ImageView.java +++ b/javafx-ui-common/src/javafx/scene/image/ImageView.java @@ -142,8 +142,6 @@ *

* *

- * - * @profile common */ @DefaultProperty("image") public class ImageView extends Node { @@ -181,7 +179,6 @@ * The {@link Image} to be painted by this {@code ImageView}. * * @defaultvalue null - * @profile common */ private ObjectProperty image; @@ -300,7 +297,6 @@ * The current x coordinate of the {@code ImageView} origin. * * @defaultvalue 0 - * @profile common */ private DoubleProperty x; @@ -341,7 +337,6 @@ * The current y coordinate of the {@code ImageView} origin. * * @defaultvalue 0 - * @profile common */ private DoubleProperty y; @@ -388,7 +383,6 @@ * attributes. * * @defaultvalue 0 - * @profile common */ private DoubleProperty fitWidth; @@ -436,7 +430,6 @@ *

* * @defaultvalue 0 - * @profile common */ private DoubleProperty fitHeight; @@ -501,7 +494,6 @@ * contained within {@code fitWidth x fitHeight} bonding box. * * @defaultvalue false - * @profile common */ private BooleanProperty preserveRatio; @@ -553,7 +545,6 @@ *

* * @defaultvalue platform-dependent - * @profile common */ private BooleanProperty smooth; @@ -606,7 +597,6 @@ *

* * @defaultvalue null - * @profile common */ private ObjectProperty viewport; diff --git a/javafx-ui-common/src/javafx/scene/input/ContextMenuEvent.java b/javafx-ui-common/src/javafx/scene/input/ContextMenuEvent.java --- a/javafx-ui-common/src/javafx/scene/input/ContextMenuEvent.java +++ b/javafx-ui-common/src/javafx/scene/input/ContextMenuEvent.java @@ -40,8 +40,6 @@ * menu is platform specific. For example, on Windows, Shift+F10 * requests a context menu. *

- * - * @profile common */ public class ContextMenuEvent extends InputEvent { @@ -100,8 +98,6 @@ /** * The boolean that indicates the event was triggered by a keyboard gesture. - * - * @profile common */ private boolean keyboardTrigger; @@ -117,8 +113,6 @@ /** * Horizontal x position of the event relative to the * origin of the MouseEvent's node. - * - * @profile common */ private double x; @@ -129,8 +123,6 @@ /** * Vertical y position of the event relative to the * origin of the MouseEvent's node. - * - * @profile common */ private double y; @@ -140,8 +132,6 @@ /** * Absolute horizontal x position of the event. - * - * @profile common */ private double screenX; @@ -151,8 +141,6 @@ /** * Absolute vertical y position of the event. - * - * @profile common */ private double screenY; @@ -165,8 +153,6 @@ * origin of the {@code Scene} that contains the MouseEvent's node. * If the node is not in a {@code Scene}, then the value is relative to * the boundsInParent of the root-most parent of the MouseEvent's node. - * - * @profile common */ private double sceneX; @@ -179,8 +165,6 @@ * origin of the {@code Scene} that contains the MouseEvent's node. * If the node is not in a {@code Scene}, then the value is relative to * the boundsInParent of the root-most parent of the MouseEvent's node. - * - * @profile common */ private double sceneY; diff --git a/javafx-ui-common/src/javafx/scene/input/DragEvent.java b/javafx-ui-common/src/javafx/scene/input/DragEvent.java --- a/javafx-ui-common/src/javafx/scene/input/DragEvent.java +++ b/javafx-ui-common/src/javafx/scene/input/DragEvent.java @@ -198,7 +198,6 @@ * pressing the ESC key to cancel the drag and drop gesture, or by * the gesture target reporting an unsuccessful data transfer. *

- * @profile common */ public class DragEvent extends InputEvent { @@ -426,8 +425,6 @@ /** * Horizontal x position of the event relative to the * origin of the MouseEvent's node. - * - * @profile common */ private double x; @@ -437,8 +434,6 @@ * * @return horizontal position of the event relative to the * origin of the DragEvent's source. - * - * @profile common */ public final double getX() { return x; @@ -447,8 +442,6 @@ /** * Vertical y position of the event relative to the * origin of the MouseEvent's node. - * - * @profile common */ private double y; @@ -458,8 +451,6 @@ * * @return vertical position of the event relative to the * origin of the DragEvent's source. - * - * @profile common */ public final double getY() { return y; @@ -467,15 +458,12 @@ /** * Absolute horizontal x position of the event. - * - * @profile common */ private double screenX; /** * Returns absolute horizontal position of the event. * @return absolute horizontal position of the event - * @profile common */ public final double getScreenX() { return screenX; @@ -483,15 +471,12 @@ /** * Absolute vertical y position of the event. - * - * @profile common */ private double screenY; /** * Returns absolute vertical position of the event. * @return absolute vertical position of the event - * @profile common */ public final double getScreenY() { return screenY; @@ -502,8 +487,6 @@ * origin of the {@code Scene} that contains the DragEvent's node. * If the node is not in a {@code Scene}, then the value is relative to * the boundsInParent of the root-most parent of the DragEvent's node. - * - * @profile common */ private double sceneX; @@ -515,8 +498,6 @@ * * @return horizontal position of the event relative to the * origin of the {@code Scene} that contains the DragEvent's source - * - * @profile common */ public final double getSceneX() { return sceneX; @@ -527,8 +508,6 @@ * origin of the {@code Scene} that contains the DragEvent's node. * If the node is not in a {@code Scene}, then the value is relative to * the boundsInParent of the root-most parent of the DragEvent's node. - * - * @profile common */ private double sceneY; @@ -540,8 +519,6 @@ * * @return vertical position of the event relative to the * origin of the {@code Scene} that contains the DragEvent's source - * - * @profile common */ public final double getSceneY() { return sceneY; @@ -552,7 +529,6 @@ * Gesture source is the object that started drag and drop operation. * The value {@code null} is valid in the case that the gesture comes * from another application. - * @profile common */ public final Object getGestureSource() { return gestureSource; } private Object gestureSource; @@ -563,7 +539,6 @@ * The value {@code null} is valid in the case that the drag and drop * gesture has been canceled or completed without a transfer taking place * or there is currently no event target accepting the drag events. - * @profile common */ public final Object getGestureTarget() { return gestureTarget; } private Object gestureTarget; @@ -576,8 +551,6 @@ * the transfer mode accepted by previous DRAG_OVER handler. * After the data transfer (in DRAG_DONE event) * it determines the actual mode of the transfer done. - * - * @profile common */ public final TransferMode getTransferMode() { return transferMode; } private TransferMode transferMode; @@ -587,7 +560,6 @@ /** * Indicates if this event has been accepted. * @see #acceptTransferModes - * @profile common * @defaultvalue false */ public final boolean isAccepted() { return state.accepted; } diff --git a/javafx-ui-common/src/javafx/scene/input/Dragboard.java b/javafx-ui-common/src/javafx/scene/input/Dragboard.java --- a/javafx-ui-common/src/javafx/scene/input/Dragboard.java +++ b/javafx-ui-common/src/javafx/scene/input/Dragboard.java @@ -31,7 +31,6 @@ /** * A drag and drop specific {@link Clipboard}. - * @profile common */ public final class Dragboard extends Clipboard { diff --git a/javafx-ui-common/src/javafx/scene/input/InputMethodEvent.java b/javafx-ui-common/src/javafx/scene/input/InputMethodEvent.java --- a/javafx-ui-common/src/javafx/scene/input/InputMethodEvent.java +++ b/javafx-ui-common/src/javafx/scene/input/InputMethodEvent.java @@ -65,8 +65,6 @@ * Note: this is a conditional feature. See * {@link javafx.application.ConditionalFeature#INPUT_METHOD ConditionalFeature.INPUT_METHOD} * for more information. - * - * @profile common conditional input_method */ public class InputMethodEvent extends InputEvent { /** @@ -115,7 +113,6 @@ * appropriate visual feedback that represents the {@link InputMethodHighlight}s * attached to each run. * - * @profile common conditional input_method * @defaultvalue null */ private ObservableList composed; @@ -138,7 +135,6 @@ * The text that is committed by the input method as the result of the * composition. * - * @profile common conditional input_method * @defaultvalue empty string */ private String committed = new String(); @@ -157,7 +153,6 @@ * The input method caret position within the composed text. * If the position is -1, the caret should be invisible. * - * @profile common conditional input_method * @defaultvalue 0 */ private int caretPosition; diff --git a/javafx-ui-common/src/javafx/scene/input/InputMethodHighlight.java b/javafx-ui-common/src/javafx/scene/input/InputMethodHighlight.java --- a/javafx-ui-common/src/javafx/scene/input/InputMethodHighlight.java +++ b/javafx-ui-common/src/javafx/scene/input/InputMethodHighlight.java @@ -46,8 +46,6 @@ /** * The enum that contains the input method text highlights. - * - * @profile common conditional input_method */ public enum InputMethodHighlight { /** diff --git a/javafx-ui-common/src/javafx/scene/input/InputMethodTextRun.java b/javafx-ui-common/src/javafx/scene/input/InputMethodTextRun.java --- a/javafx-ui-common/src/javafx/scene/input/InputMethodTextRun.java +++ b/javafx-ui-common/src/javafx/scene/input/InputMethodTextRun.java @@ -51,8 +51,6 @@ * Note: this is a conditional feature. See * {@link javafx.application.ConditionalFeature#INPUT_METHOD ConditionalFeature.INPUT_METHOD} * for more information. - * - * @profile common conditional input_method */ public class InputMethodTextRun { /** @@ -70,7 +68,6 @@ /** * The text in this run. * - * @profile common conditional input_method * @defaultvalue empty string */ private String text = new String(); @@ -85,7 +82,6 @@ /** * The highlight used for displaying this text. * - * @profile common conditional input_method * @defaultvalue null */ private InputMethodHighlight highlight; diff --git a/javafx-ui-common/src/javafx/scene/input/KeyCode.java b/javafx-ui-common/src/javafx/scene/input/KeyCode.java --- a/javafx-ui-common/src/javafx/scene/input/KeyCode.java +++ b/javafx-ui-common/src/javafx/scene/input/KeyCode.java @@ -30,1320 +30,944 @@ /** * Set of key codes for {@link KeyEvent} objects. - * - * @profile common */ public enum KeyCode { /** * Constant for the {@code Enter} key. - * - * @profile common */ ENTER(0x0A, "Enter"), /** * Constant for the {@code Backspace} key. - * - * @profile common */ BACK_SPACE(0x08, "Backspace"), /** * Constant for the {@code Tab} key. - * - * @profile common */ TAB(0x09, "Tab"), /** * Constant for the {@code Cancel} key. - * - * @profile common */ CANCEL(0x03, "Cancel"), /** * Constant for the {@code Clear} key. - * - * @profile common */ CLEAR(0x0C, "Clear"), /** * Constant for the {@code Shift} key. - * - * @profile common */ SHIFT(0x10, "Shift"), /** * Constant for the {@code Ctrl} key. - * - * @profile common */ CONTROL(0x11, "Ctrl"), /** * Constant for the {@code Alt} key. - * - * @profile common */ ALT(0x12, "Alt"), /** * Constant for the {@code Pause} key. - * - * @profile common */ PAUSE(0x13, "Pause"), /** * Constant for the {@code Caps Lock} key. - * - * @profile common */ CAPS(0x14, "Caps Lock"), /** * Constant for the {@code Esc} key. - * - * @profile common */ ESCAPE(0x1B, "Esc"), /** * Constant for the {@code Space} key. - * - * @profile common */ SPACE(0x20, "Space"), /** * Constant for the {@code Page Up} key. - * - * @profile common */ PAGE_UP(0x21, "Page Up"), /** * Constant for the {@code Page Down} key. - * - * @profile common */ PAGE_DOWN(0x22, "Page Down"), /** * Constant for the {@code End} key. - * - * @profile common */ END(0x23, "End"), /** * Constant for the {@code Home} key. - * - * @profile common */ HOME(0x24, "Home"), /** * Constant for the non-numpad left arrow key. - * - * @profile common */ LEFT(0x25, "Left"), /** * Constant for the non-numpad up arrow key. - * - * @profile common */ UP(0x26, "Up"), /** * Constant for the non-numpad right arrow key. - * - * @profile common */ RIGHT(0x27, "Right"), /** * Constant for the non-numpad down arrow key. - * - * @profile common */ DOWN(0x28, "Down"), /** * Constant for the comma key, "," - * - * @profile common */ COMMA(0x2C, "Comma"), /** * Constant for the minus key, "-" - * - * @profile common */ MINUS(0x2D, "Minus"), /** * Constant for the period key, "." - * - * @profile common */ PERIOD(0x2E, "Period"), /** * Constant for the forward slash key, "/" - * - * @profile common */ SLASH(0x2F, "Slash"), /** * Constant for the {@code 0} key. - * - * @profile common */ DIGIT0(0x30, "0"), /** * Constant for the {@code 1} key. - * - * @profile common */ DIGIT1(0x31, "1"), /** * Constant for the {@code 2} key. - * - * @profile common */ DIGIT2(0x32, "2"), /** * Constant for the {@code 3} key. - * - * @profile common */ DIGIT3(0x33, "3"), /** * Constant for the {@code 4} key. - * - * @profile common */ DIGIT4(0x34, "4"), /** * Constant for the {@code 5} key. - * - * @profile common */ DIGIT5(0x35, "5"), /** * Constant for the {@code 6} key. - * - * @profile common */ DIGIT6(0x36, "6"), /** * Constant for the {@code 7} key. - * - * @profile common */ DIGIT7(0x37, "7"), /** * Constant for the {@code 8} key. - * - * @profile common */ DIGIT8(0x38, "8"), /** * Constant for the {@code 9} key. - * - * @profile common */ DIGIT9(0x39, "9"), /** * Constant for the semicolon key, ";" - * - * @profile common */ SEMICOLON(0x3B, "Semicolon"), /** * Constant for the equals key, "=" - * - * @profile common */ EQUALS(0x3D, "Equals"), /** * Constant for the {@code A} key. - * - * @profile common */ A(0x41, "A"), /** * Constant for the {@code B} key. - * - * @profile common */ B(0x42, "B"), /** * Constant for the {@code C} key. - * - * @profile common */ C(0x43, "C"), /** * Constant for the {@code D} key. - * - * @profile common */ D(0x44, "D"), /** * Constant for the {@code E} key. - * - * @profile common */ E(0x45, "E"), /** * Constant for the {@code F} key. - * - * @profile common */ F(0x46, "F"), /** * Constant for the {@code G} key. - * - * @profile common */ G(0x47, "G"), /** * Constant for the {@code H} key. - * - * @profile common */ H(0x48, "H"), /** * Constant for the {@code I} key. - * - * @profile common */ I(0x49, "I"), /** * Constant for the {@code J} key. - * - * @profile common */ J(0x4A, "J"), /** * Constant for the {@code K} key. - * - * @profile common */ K(0x4B, "K"), /** * Constant for the {@code L} key. - * - * @profile common */ L(0x4C, "L"), /** * Constant for the {@code M} key. - * - * @profile common */ M(0x4D, "M"), /** * Constant for the {@code N} key. - * - * @profile common */ N(0x4E, "N"), /** * Constant for the {@code O} key. - * - * @profile common */ O(0x4F, "O"), /** * Constant for the {@code P} key. - * - * @profile common */ P(0x50, "P"), /** * Constant for the {@code Q} key. - * - * @profile common */ Q(0x51, "Q"), /** * Constant for the {@code R} key. - * - * @profile common */ R(0x52, "R"), /** * Constant for the {@code S} key. - * - * @profile common */ S(0x53, "S"), /** * Constant for the {@code T} key. - * - * @profile common */ T(0x54, "T"), /** * Constant for the {@code U} key. - * - * @profile common */ U(0x55, "U"), /** * Constant for the {@code V} key. - * - * @profile common */ V(0x56, "V"), /** * Constant for the {@code W} key. - * - * @profile common */ W(0x57, "W"), /** * Constant for the {@code X} key. - * - * @profile common */ X(0x58, "X"), /** * Constant for the {@code Y} key. - * - * @profile common */ Y(0x59, "Y"), /** * Constant for the {@code Z} key. - * - * @profile common */ Z(0x5A, "Z"), /** * Constant for the open bracket key, "[" - * - * @profile common */ OPEN_BRACKET(0x5B, "Open Bracket"), /** * Constant for the back slash key, "\" - * - * @profile common */ BACK_SLASH(0x5C, "Back Slash"), /** * Constant for the close bracket key, "]" - * - * @profile common */ CLOSE_BRACKET(0x5D, "Close Bracket"), /** * Constant for the {@code Numpad 0} key. - * - * @profile common */ NUMPAD0(0x60, "Numpad 0"), /** * Constant for the {@code Numpad 1} key. - * - * @profile common */ NUMPAD1(0x61, "Numpad 1"), /** * Constant for the {@code Numpad 2} key. - * - * @profile common */ NUMPAD2(0x62, "Numpad 2"), /** * Constant for the {@code Numpad 3} key. - * - * @profile common */ NUMPAD3(0x63, "Numpad 3"), /** * Constant for the {@code Numpad 4} key. - * - * @profile common */ NUMPAD4(0x64, "Numpad 4"), /** * Constant for the {@code Numpad 5} key. - * - * @profile common */ NUMPAD5(0x65, "Numpad 5"), /** * Constant for the {@code Numpad 6} key. - * - * @profile common */ NUMPAD6(0x66, "Numpad 6"), /** * Constant for the {@code Numpad 7} key. - * - * @profile common */ NUMPAD7(0x67, "Numpad 7"), /** * Constant for the {@code Numpad 8} key. - * - * @profile common */ NUMPAD8(0x68, "Numpad 8"), /** * Constant for the {@code Numpad 9} key. - * - * @profile common */ NUMPAD9(0x69, "Numpad 9"), /** * Constant for the {@code Multiply} key. - * - * @profile common */ MULTIPLY(0x6A, "Multiply"), /** * Constant for the {@code Add} key. - * - * @profile common */ ADD(0x6B, "Add"), /** * Constant for the Numpad Separator key. - * - * @profile common */ SEPARATOR(0x6C, "Separator"), /** * Constant for the {@code Subtract} key. - * - * @profile common */ SUBTRACT(0x6D, "Subtract"), /** * Constant for the {@code Decimal} key. - * - * @profile common */ DECIMAL(0x6E, "Decimal"), /** * Constant for the {@code Divide} key. - * - * @profile common */ DIVIDE(0x6F, "Divide"), /** * Constant for the {@code Delete} key. - * - * @profile common */ DELETE(0x7F, "Delete"), /* ASCII:Integer DEL */ /** * Constant for the {@code Num Lock} key. - * - * @profile common */ NUM_LOCK(0x90, "Num Lock"), /** * Constant for the {@code Scroll Lock} key. - * - * @profile common */ SCROLL_LOCK(0x91, "Scroll Lock"), /** * Constant for the F1 function key. - * - * @profile common */ F1(0x70, "F1"), /** * Constant for the F2 function key. - * - * @profile common */ F2(0x71, "F2"), /** * Constant for the F3 function key. - * - * @profile common */ F3(0x72, "F3"), /** * Constant for the F4 function key. - * - * @profile common */ F4(0x73, "F4"), /** * Constant for the F5 function key. - * - * @profile common */ F5(0x74, "F5"), /** * Constant for the F6 function key. - * - * @profile common */ F6(0x75, "F6"), /** * Constant for the F7 function key. - * - * @profile common */ F7(0x76, "F7"), /** * Constant for the F8 function key. - * - * @profile common */ F8(0x77, "F8"), /** * Constant for the F9 function key. - * - * @profile common */ F9(0x78, "F9"), /** * Constant for the F10 function key. - * - * @profile common */ F10(0x79, "F10"), /** * Constant for the F11 function key. - * - * @profile common */ F11(0x7A, "F11"), /** * Constant for the F12 function key. - * - * @profile common */ F12(0x7B, "F12"), /** * Constant for the F13 function key. - * - * @profile common */ F13(0xF000, "F13"), /** * Constant for the F14 function key. - * - * @profile common */ F14(0xF001, "F14"), /** * Constant for the F15 function key. - * - * @profile common */ F15(0xF002, "F15"), /** * Constant for the F16 function key. - * - * @profile common */ F16(0xF003, "F16"), /** * Constant for the F17 function key. - * - * @profile common */ F17(0xF004, "F17"), /** * Constant for the F18 function key. - * - * @profile common */ F18(0xF005, "F18"), /** * Constant for the F19 function key. - * - * @profile common */ F19(0xF006, "F19"), /** * Constant for the F20 function key. - * - * @profile common */ F20(0xF007, "F20"), /** * Constant for the F21 function key. - * - * @profile common */ F21(0xF008, "F21"), /** * Constant for the F22 function key. - * - * @profile common */ F22(0xF009, "F22"), /** * Constant for the F23 function key. - * - * @profile common */ F23(0xF00A, "F23"), /** * Constant for the F24 function key. - * - * @profile common */ F24(0xF00B, "F24"), /** * Constant for the {@code Print Screen} key. - * - * @profile common */ PRINTSCREEN(0x9A, "Print Screen"), /** * Constant for the {@code Insert} key. - * - * @profile common */ INSERT(0x9B, "Insert"), /** * Constant for the {@code Help} key. - * - * @profile common */ HELP(0x9C, "Help"), /** * Constant for the {@code Meta} key. - * - * @profile common */ META(0x9D, "Meta"), /** * Constant for the {@code Back Quote} key. - * - * @profile common */ BACK_QUOTE(0xC0, "Back Quote"), /** * Constant for the {@code Quote} key. - * - * @profile common */ QUOTE(0xDE, "Quote"), /** * Constant for the numeric keypad up arrow key. - * - * @profile common */ KP_UP(0xE0, "Numpad Up"), /** * Constant for the numeric keypad down arrow key. - * - * @profile common */ KP_DOWN(0xE1, "Numpad Down"), /** * Constant for the numeric keypad left arrow key. - * - * @profile common */ KP_LEFT(0xE2, "Numpad Left"), /** * Constant for the numeric keypad right arrow key. - * - * @profile common */ KP_RIGHT(0xE3, "Numpad Right"), /** * Constant for the {@code Dead Grave} key. - * - * @profile common */ DEAD_GRAVE(0x80, "Dead Grave"), /** * Constant for the {@code Dead Acute} key. - * - * @profile common */ DEAD_ACUTE(0x81, "Dead Acute"), /** * Constant for the {@code Circumflex} key. - * - * @profile common */ DEAD_CIRCUMFLEX(0x82, "Circumflex"), /** * Constant for the {@code Dead Tilde} key. - * - * @profile common */ DEAD_TILDE(0x83, "Dead Tilde"), /** * Constant for the {@code Dead Macron} key. - * - * @profile common */ DEAD_MACRON(0x84, "Dead Macron"), /** * Constant for the {@code Dead Breve} key. - * - * @profile common */ DEAD_BREVE(0x85, "Dead Breve"), /** * Constant for the {@code Dead Abovedot} key. - * - * @profile common */ DEAD_ABOVEDOT(0x86, "Dead Abovedot"), /** * Constant for the {@code Dead Diaeresis} key. - * - * @profile common */ DEAD_DIAERESIS(0x87, "Dead Diaeresis"), /** * Constant for the {@code Dead Abovering} key. - * - * @profile common */ DEAD_ABOVERING(0x88, "Dead Abovering"), /** * Constant for the {@code Dead Doubleacute} key. - * - * @profile common */ DEAD_DOUBLEACUTE(0x89, "Dead Doubleacute"), /** * Constant for the {@code Dead Caron} key. - * - * @profile common */ DEAD_CARON(0x8a, "Dead Caron"), /** * Constant for the {@code Dead Cedilla} key. - * - * @profile common */ DEAD_CEDILLA(0x8b, "Dead Cedilla"), /** * Constant for the {@code Dead Ogonek} key. - * - * @profile common */ DEAD_OGONEK(0x8c, "Dead Ogonek"), /** * Constant for the {@code Dead Iota} key. - * - * @profile common */ DEAD_IOTA(0x8d, "Dead Iota"), /** * Constant for the {@code Dead Voiced Sound} key. - * - * @profile common */ DEAD_VOICED_SOUND(0x8e, "Dead Voiced Sound"), /** * Constant for the {@code Dead Semivoiced Sound} key. - * - * @profile common */ DEAD_SEMIVOICED_SOUND(0x8f, "Dead Semivoiced Sound"), /** * Constant for the {@code Ampersand} key. - * - * @profile common */ AMPERSAND(0x96, "Ampersand"), /** * Constant for the {@code Asterisk} key. - * - * @profile common */ ASTERISK(0x97, "Asterisk"), /** * Constant for the {@code Double Quote} key. - * - * @profile common */ QUOTEDBL(0x98, "Double Quote"), /** * Constant for the {@code Less} key. - * - * @profile common */ LESS(0x99, "Less"), /** * Constant for the {@code Greater} key. - * - * @profile common */ GREATER(0xa0, "Greater"), /** * Constant for the {@code Left Brace} key. - * - * @profile common */ BRACELEFT(0xa1, "Left Brace"), /** * Constant for the {@code Right Brace} key. - * - * @profile common */ BRACERIGHT(0xa2, "Right Brace"), /** * Constant for the "@" key. - * - * @profile common */ AT(0x0200, "At"), /** * Constant for the ":" key. - * - * @profile common */ COLON(0x0201, "Colon"), /** * Constant for the "^" key. - * - * @profile common */ CIRCUMFLEX(0x0202, "Circumflex"), /** * Constant for the "$" key. - * - * @profile common */ DOLLAR(0x0203, "Dollar"), /** * Constant for the Euro currency sign key. - * - * @profile common */ EURO_SIGN(0x0204, "Euro Sign"), /** * Constant for the "!" key. - * - * @profile common */ EXCLAMATION_MARK(0x0205, "Exclamation Mark"), /** * Constant for the inverted exclamation mark key. - * - * @profile common */ INVERTED_EXCLAMATION_MARK(0x0206, "Inverted Exclamation Mark"), /** * Constant for the "(" key. - * - * @profile common */ LEFT_PARENTHESIS(0x0207, "Left Parenthesis"), /** * Constant for the "#" key. - * - * @profile common */ NUMBER_SIGN(0x0208, "Number Sign"), /** * Constant for the "+" key. - * - * @profile common */ PLUS(0x0209, "Plus"), /** * Constant for the ")" key. - * - * @profile common */ RIGHT_PARENTHESIS(0x020A, "Right Parenthesis"), /** * Constant for the "_" key. - * - * @profile common */ UNDERSCORE(0x020B, "Underscore"), /** * Constant for the Microsoft Windows "Windows" key. * It is used for both the left and right version of the key. - * - * @profile common */ WINDOWS(0x020C, "Windows"), /** * Constant for the Microsoft Windows Context Menu key. - * - * @profile common */ CONTEXT_MENU(0x020D, "Context Menu"), /** * Constant for input method support on Asian Keyboards. - * - * @profile common */ FINAL(0x0018, "Final"), /** * Constant for the Convert function key. - * - * @profile common */ CONVERT(0x001C, "Convert"), /** * Constant for the Don't Convert function key. - * - * @profile common */ NONCONVERT(0x001D, "Nonconvert"), /** * Constant for the Accept or Commit function key. - * - * @profile common */ ACCEPT(0x001E, "Accept"), /** * Constant for the {@code Mode Change} key. - * - * @profile common */ MODECHANGE(0x001F, "Mode Change"), /** * Constant for the {@code Kana} key. - * - * @profile common */ KANA(0x0015, "Kana"), /** * Constant for the {@code Kanji} key. - * - * @profile common */ KANJI(0x0019, "Kanji"), /** * Constant for the Alphanumeric function key. - * - * @profile common */ ALPHANUMERIC(0x00F0, "Alphanumeric"), /** * Constant for the Katakana function key. - * - * @profile common */ KATAKANA(0x00F1, "Katakana"), /** * Constant for the Hiragana function key. - * - * @profile common */ HIRAGANA(0x00F2, "Hiragana"), /** * Constant for the Full-Width Characters function key. - * - * @profile common */ FULL_WIDTH(0x00F3, "Full Width"), /** * Constant for the Half-Width Characters function key. - * - * @profile common */ HALF_WIDTH(0x00F4, "Half Width"), /** * Constant for the Roman Characters function key. - * - * @profile common */ ROMAN_CHARACTERS(0x00F5, "Roman Characters"), /** * Constant for the All Candidates function key. - * - * @profile common */ ALL_CANDIDATES(0x0100, "All Candidates"), /** * Constant for the Previous Candidate function key. - * - * @profile common */ PREVIOUS_CANDIDATE(0x0101, "Previous Candidate"), /** * Constant for the Code Input function key. - * - * @profile common */ CODE_INPUT(0x0102, "Code Input"), /** * Constant for the Japanese-Katakana function key. * This key switches to a Japanese input method and selects its Katakana input mode. - * - * @profile common */ JAPANESE_KATAKANA(0x0103, "Japanese Katakana"), /** * Constant for the Japanese-Hiragana function key. * This key switches to a Japanese input method and selects its Hiragana input mode. - * - * @profile common */ JAPANESE_HIRAGANA(0x0104, "Japanese Hiragana"), /** * Constant for the Japanese-Roman function key. * This key switches to a Japanese input method and selects its Roman-Direct input mode. - * - * @profile common */ JAPANESE_ROMAN(0x0105, "Japanese Roman"), /** * Constant for the locking Kana function key. * This key locks the keyboard into a Kana layout. - * - * @profile common */ KANA_LOCK(0x0106, "Kana Lock"), /** * Constant for the input method on/off key. - * - * @profile common */ INPUT_METHOD_ON_OFF(0x0107, "Input Method On/Off"), /** * Constant for the {@code Cut} key. - * - * @profile common */ CUT(0xFFD1, "Cut"), /** * Constant for the {@code Copy} key. - * - * @profile common */ COPY(0xFFCD, "Copy"), /** * Constant for the {@code Paste} key. - * - * @profile common */ PASTE(0xFFCF, "Paste"), /** * Constant for the {@code Undo} key. - * - * @profile common */ UNDO(0xFFCB, "Undo"), /** * Constant for the {@code Again} key. - * - * @profile common */ AGAIN(0xFFC9, "Again"), /** * Constant for the {@code Find} key. - * - * @profile common */ FIND(0xFFD0, "Find"), /** * Constant for the {@code Properties} key. - * - * @profile common */ PROPS(0xFFCA, "Properties"), /** * Constant for the {@code Stop} key. - * - * @profile common */ STOP(0xFFC8, "Stop"), /** * Constant for the input method on/off key. - * - * @profile common */ COMPOSE(0xFF20, "Compose"), /** * Constant for the AltGraph function key. - * - * @profile common */ ALT_GRAPH(0xFF7E, "Alt Graph"), /** * Constant for the Begin key. - * - * @profile common */ BEGIN(0xFF58, "Begin"), @@ -1351,8 +975,6 @@ * This value is used to indicate that the keyCode is unknown. * Key typed events do not have a keyCode value; this value * is used instead. - * - * @profile common */ UNDEFINED(0x0, "Undefined"), @@ -1365,113 +987,81 @@ /** * Constant for the {@code Softkey 0} key. - * - * @profile common */ SOFTKEY_0(0x1000, "Softkey 0"), /** * Constant for the {@code Softkey 1} key. - * - * @profile common */ SOFTKEY_1(0x1001, "Softkey 1"), /** * Constant for the {@code Softkey 2} key. - * - * @profile common */ SOFTKEY_2(0x1002, "Softkey 2"), /** * Constant for the {@code Softkey 3} key. - * - * @profile common */ SOFTKEY_3(0x1003, "Softkey 3"), /** * Constant for the {@code Softkey 4} key. - * - * @profile common */ SOFTKEY_4(0x1004, "Softkey 4"), /** * Constant for the {@code Softkey 5} key. - * - * @profile common */ SOFTKEY_5(0x1005, "Softkey 5"), /** * Constant for the {@code Softkey 6} key. - * - * @profile common */ SOFTKEY_6(0x1006, "Softkey 6"), /** * Constant for the {@code Softkey 7} key. - * - * @profile common */ SOFTKEY_7(0x1007, "Softkey 7"), /** * Constant for the {@code Softkey 8} key. - * - * @profile common */ SOFTKEY_8(0x1008, "Softkey 8"), /** * Constant for the {@code Softkey 9} key. - * - * @profile common */ SOFTKEY_9(0x1009, "Softkey 9"), /** * Constant for the {@code Game A} key. - * - * @profile common */ GAME_A(0x100A, "Game A"), /** * Constant for the {@code Game B} key. - * - * @profile common */ GAME_B(0x100B, "Game B"), /** * Constant for the {@code Game C} key. - * - * @profile common */ GAME_C(0x100C, "Game C"), /** * Constant for the {@code Game D} key. - * - * @profile common */ GAME_D(0x100D, "Game D"), /** * Constant for the {@code Star} key. - * - * @profile common */ STAR(0x100E, "Star"), /** * Constant for the {@code Pound} key. - * - * @profile common */ POUND(0x100F, "Pound"), @@ -1483,127 +1073,91 @@ /** * Constant for the {@code Power} key. - * - * @profile common */ POWER(0x199, "Power"), /** * Constant for the {@code Info} key. - * - * @profile common */ INFO(0x1C9, "Info"), /** * Constant for the {@code Colored Key 0} key. - * - * @profile common */ COLORED_KEY_0(0x193, "Colored Key 0"), /** * Constant for the {@code Colored Key 1} key. - * - * @profile common */ COLORED_KEY_1(0x194, "Colored Key 1"), /** * Constant for the {@code Colored Key 2} key. - * - * @profile common */ COLORED_KEY_2(0x195, "Colored Key 2"), /** * Constant for the {@code Colored Key 3} key. - * - * @profile common */ COLORED_KEY_3(0x196, "Colored Key 3"), /** * Constant for the {@code Eject} key. - * - * @profile common */ EJECT_TOGGLE(0x19E, "Eject"), /** * Constant for the {@code Play} key. - * - * @profile common */ PLAY(0x19F, "Play"), /** * Constant for the {@code Record} key. - * - * @profile common */ RECORD(0x1A0, "Record"), /** * Constant for the {@code Fast Forward} key. - * - * @profile common */ FAST_FWD(0x1A1, "Fast Forward"), /** * Constant for the {@code Rewind} key. - * - * @profile common */ REWIND(0x19C, "Rewind"), /** * Constant for the {@code Previous Track} key. - * - * @profile common */ TRACK_PREV(0x1A8, "Previous Track"), /** * Constant for the {@code Next Track} key. - * - * @profile common */ TRACK_NEXT(0x1A9, "Next Track"), /** * Constant for the {@code Channel Up} key. - * - * @profile common */ CHANNEL_UP(0x1AB, "Channel Up"), /** * Constant for the {@code Channel Down} key. - * - * @profile common */ CHANNEL_DOWN(0x1AC, "Channel Down"), /** * Constant for the {@code Volume Up} key. - * - * @profile common */ VOLUME_UP(0x1bf, "Volume Up"), /** * Constant for the {@code Volume Down} key. - * - * @profile common */ VOLUME_DOWN(0x1C0, "Volume Down"), /** * Constant for the {@code Mute} key. - * - * @profile common */ MUTE(0x1C1, "Mute"), @@ -1614,8 +1168,6 @@ /** * Constant for the {@code Shortcut} key. - * - * @profile common */ SHORTCUT(-1, "Shortcut"); diff --git a/javafx-ui-common/src/javafx/scene/input/KeyEvent.java b/javafx-ui-common/src/javafx/scene/input/KeyEvent.java --- a/javafx-ui-common/src/javafx/scene/input/KeyEvent.java +++ b/javafx-ui-common/src/javafx/scene/input/KeyEvent.java @@ -76,8 +76,6 @@ * generate character input (e.g., action keys, modifier keys, etc.). The key * being pressed or released is indicated by the code variable, which contains * a virtual key code. - * - * @profile common */ public class KeyEvent extends InputEvent { /** @@ -214,8 +212,6 @@ /** * KEY_PRESSED and KEY_RELEASED events which do not map to a valid Unicode * character use this for the keyChar value. - * - * @profile common */ public static final String CHAR_UNDEFINED = KeyCode.UNDEFINED.ch; @@ -243,8 +239,6 @@ * event generated by pressing SHIFT + 'a'. * For key pressed and key released events, {@code char} is always * {@code CHAR_UNDEFINED}. - * - * @profile common */ private String character; @@ -265,8 +259,6 @@ * A String describing the key code, such as "HOME", "F1" or "A", * for key pressed and key released events. * For key typed events, {@code text} is always the empty string. - * - * @profile common */ private String text; @@ -285,8 +277,6 @@ * The integer key code associated with the key in this key * pressed or key released event. * For key typed events, {@code code} is always {@code KeyCode.UNDEFINED}. - * - * @profile common */ private KeyCode code; @@ -303,8 +293,6 @@ /** * Returns whether or not the Shift modifier is down on this event. - * - * @profile common */ private boolean shiftDown; @@ -318,8 +306,6 @@ /** * Returns whether or not the Control modifier is down on this event. - * - * @profile common */ private boolean controlDown; @@ -333,8 +319,6 @@ /** * Returns whether or not the Alt modifier is down on this event. - * - * @profile common */ private boolean altDown; @@ -348,8 +332,6 @@ /** * Returns whether or not the Meta modifier is down on this event. - * - * @profile common */ private boolean metaDown; diff --git a/javafx-ui-common/src/javafx/scene/input/MouseButton.java b/javafx-ui-common/src/javafx/scene/input/MouseButton.java --- a/javafx-ui-common/src/javafx/scene/input/MouseButton.java +++ b/javafx-ui-common/src/javafx/scene/input/MouseButton.java @@ -46,34 +46,26 @@ /** * Mapping for Button Names - * - * @profile common */ public enum MouseButton { /** * Represents no button. - * - * @profile common */ NONE, /** * Represents primary (button 1, usually the left) mouse button. - * - * @profile common */ PRIMARY, /** * Represents middle (button 2) mouse button. - * @profile common */ MIDDLE, /** * Represents seconday (button 3, usually the right) mouse button. - * @profile common */ SECONDARY, } diff --git a/javafx-ui-common/src/javafx/scene/input/MouseEvent.java b/javafx-ui-common/src/javafx/scene/input/MouseEvent.java --- a/javafx-ui-common/src/javafx/scene/input/MouseEvent.java +++ b/javafx-ui-common/src/javafx/scene/input/MouseEvent.java @@ -114,8 +114,6 @@ * it affects both event variants. Thanks to the subtype-relationship, a * {@code MOUSE_ENTERED_TARGET} event handler will receive the * {@code MOUSE_ENTERED} event on target. - * - * @profile common */ public class MouseEvent extends InputEvent { /** @@ -467,8 +465,6 @@ /** * Horizontal x position of the event relative to the * origin of the MouseEvent's node. - * - * @profile common */ private double x; @@ -478,8 +474,6 @@ * * @return horizontal position of the event relative to the * origin of the MouseEvent's source. - * - * @profile common */ public final double getX() { return x; @@ -488,8 +482,6 @@ /** * Vertical y position of the event relative to the * origin of the MouseEvent's node. - * - * @profile common */ private double y; @@ -499,8 +491,6 @@ * * @return vertical position of the event relative to the * origin of the MouseEvent's source. - * - * @profile common */ public final double getY() { return y; @@ -508,15 +498,12 @@ /** * Absolute horizontal x position of the event. - * - * @profile common */ private double screenX; /** * Returns absolute horizontal position of the event. * @return absolute horizontal position of the event - * @profile common */ public final double getScreenX() { return screenX; @@ -524,15 +511,12 @@ /** * Absolute vertical y position of the event. - * - * @profile common */ private double screenY; /** * Returns absolute vertical position of the event. * @return absolute vertical position of the event - * @profile common */ public final double getScreenY() { return screenY; @@ -543,8 +527,6 @@ * origin of the {@code Scene} that contains the MouseEvent's node. * If the node is not in a {@code Scene}, then the value is relative to * the boundsInParent of the root-most parent of the MouseEvent's node. - * - * @profile common */ private double sceneX; @@ -556,8 +538,6 @@ * * @return horizontal position of the event relative to the * origin of the {@code Scene} that contains the MouseEvent's source - * - * @profile common */ public final double getSceneX() { return sceneX; @@ -568,8 +548,6 @@ * origin of the {@code Scene} that contains the MouseEvent's node. * If the node is not in a {@code Scene}, then the value is relative to * the boundsInParent of the root-most parent of the MouseEvent's node. - * - * @profile common */ private double sceneY; @@ -581,8 +559,6 @@ * * @return vertical position of the event relative to the * origin of the {@code Scene} that contains the MouseEvent's source - * - * @profile common */ public final double getSceneY() { return sceneY; @@ -590,8 +566,6 @@ /** * Which, if any, of the mouse buttons is responsible for this event. - * - * @profile common */ private MouseButton button; @@ -599,7 +573,6 @@ * Which, if any, of the mouse buttons is responsible for this event. * * @return mouse button whose state change caused this event - * @profile common */ public final MouseButton getButton() { return button; @@ -614,8 +587,6 @@ * to numbers higher than one if all the events between two subsequent * presses happen on a small region and in a small time (according * to native operating system configuration). - * - * @profile common */ private int clickCount; @@ -630,7 +601,6 @@ * to native operating system configuration). * * @return number of mouse clicks associated with this event - * @profile common */ public final int getClickCount() { return clickCount; @@ -665,16 +635,12 @@ /** * Whether or not the Shift modifier is down on this event. - * - * @profile common */ private boolean shiftDown; /** * Whether or not the Shift modifier is down on this event. * @return true if the Shift modifier is down on this event - * - * @profile common */ public final boolean isShiftDown() { return shiftDown; @@ -682,16 +648,12 @@ /** * Whether or not the Control modifier is down on this event. - * - * @profile common */ private boolean controlDown; /** * Whether or not the Control modifier is down on this event. * @return true if the Control modifier is down on this event - * - * @profile common */ public final boolean isControlDown() { return controlDown; @@ -699,16 +661,12 @@ /** * Whether or not the Alt modifier is down on this event. - * - * @profile common */ private boolean altDown; /** * Whether or not the Alt modifier is down on this event. * @return true if the Alt modifier is down on this event - * - * @profile common */ public final boolean isAltDown() { return altDown; @@ -716,16 +674,12 @@ /** * Whether or not the Meta modifier is down on this event. - * - * @profile common */ private boolean metaDown; /** * Whether or not the Meta modifier is down on this event. * @return true if the Meta modifier is down on this event - * - * @profile common */ public final boolean isMetaDown() { return metaDown; @@ -766,8 +720,6 @@ * on different systems. Therefore, {@code popupTrigger} * should be checked in both {@code onMousePressed} * and {@code mouseReleased} for proper cross-platform functionality. - * - * @profile common */ private boolean popupTrigger; @@ -777,8 +729,6 @@ * that the {@code button} variable indicates which button press was * responsible for this event while this variable indicates whether the * primary button is depressed. - * - * @profile common */ private boolean primaryButtonDown; @@ -791,7 +741,6 @@ * * @return {@code true} if primary button (button 1, usually the left) * is currently pressed - * @profile common */ public final boolean isPrimaryButtonDown() { return primaryButtonDown; @@ -803,8 +752,6 @@ * that the {@code button} variable indicates which button press was * responsible for this event while this variable indicates whether the * primary button is depressed. - * - * @profile common */ private boolean secondaryButtonDown; @@ -817,7 +764,6 @@ * * @return {@code true} if secondary button (button 3, usually the right) * is currently pressed - * @profile common */ public final boolean isSecondaryButtonDown() { return secondaryButtonDown; @@ -829,8 +775,6 @@ * that the {@code button} variable indicates which button press was * responsible for this event while this variable indicates whether the * middle button is depressed. - * - * @profile common */ private boolean middleButtonDown; @@ -842,7 +786,6 @@ * middle button is depressed. * * @return {@code true} if middle button (button 2) is currently pressed - * @profile common */ public final boolean isMiddleButtonDown() { return middleButtonDown; diff --git a/javafx-ui-common/src/javafx/scene/input/TransferMode.java b/javafx-ui-common/src/javafx/scene/input/TransferMode.java --- a/javafx-ui-common/src/javafx/scene/input/TransferMode.java +++ b/javafx-ui-common/src/javafx/scene/input/TransferMode.java @@ -28,8 +28,6 @@ /** * Describes the mode of data transfer with respect * to a drag and drop gesture. - * - * @profile common */ public enum TransferMode { diff --git a/javafx-ui-common/src/javafx/scene/layout/Region.java b/javafx-ui-common/src/javafx/scene/layout/Region.java --- a/javafx-ui-common/src/javafx/scene/layout/Region.java +++ b/javafx-ui-common/src/javafx/scene/layout/Region.java @@ -1936,7 +1936,7 @@ * region defined by {@code areaX}, {@code areaY}, {@code areaWidth} x {@code areaHeight}, * with a baseline offset relative to that area. *

- * If the child is resizable, this method will use {@code fillWidth} and {@ocde fillHeight} + * If the child is resizable, this method will use {@code fillWidth} and {@code fillHeight} * to determine whether to resize it to fill the area or keep the child at its * preferred dimension. If fillWidth/fillHeight are true, then this method * will only resize the child up to its max size limits. If the node's maximum diff --git a/javafx-ui-common/src/javafx/scene/paint/Color.java b/javafx-ui-common/src/javafx/scene/paint/Color.java --- a/javafx-ui-common/src/javafx/scene/paint/Color.java +++ b/javafx-ui-common/src/javafx/scene/paint/Color.java @@ -94,8 +94,6 @@ * rec2.setStrokeWidth(3); * *

- * - * @profile common */ public class Color extends Paint implements Interpolatable { // final @@ -119,8 +117,6 @@ * @param opacity the opacity component, in the range {@code 0.0-1.0} * @return the {@code Color} * @throws IllegalArgumentException if any value is out of range - * - * @profile common */ public static Color color(double red, double green, double blue, @Default("1") double opacity) { return new Color(red, green, blue, opacity); @@ -135,8 +131,6 @@ * @param blue the blue component, in the range {@code 0.0-1.0} * @return the {@code Color} * @throws IllegalArgumentException if any value is out of range - * - * @profile common */ public static Color color(double red, double green, double blue) { return new Color(red, green, blue, 1); @@ -152,8 +146,6 @@ * @param opacity the opacity component, in the range {@code 0.0-1.0} * @return the {@code Color} * @throws IllegalArgumentException if any value is out of range - * - * @profile common */ public static Color rgb(int red, int green, int blue, double opacity) { checkRGB(red, green, blue); @@ -172,8 +164,6 @@ * @param blue the blue component, in the range {@code 0-255} * @return the {@code Color} * @throws IllegalArgumentException if any value is out of range - * - * @profile common */ public static Color rgb(int red, int green, int blue) { checkRGB(red, green, blue); @@ -245,8 +235,6 @@ * @return the {@code Color} * @throws IllegalArgumentException if {@code saturation}, {@code brightness} or * {@code opacity} are out of range - * - * @profile common */ public static Color hsb(double hue, double saturation, double brightness, double opacity) { checkSB(saturation, brightness); @@ -264,8 +252,6 @@ * @return the {@code Color} * @throws IllegalArgumentException if {@code saturation} or {@code brightness} are * out of range - * - * @profile common */ public static Color hsb(double hue, double saturation, double brightness) { return hsb(hue, saturation, brightness, 1.0); @@ -313,8 +299,6 @@ * @throws NullPointerException if {@code colorRawName} is {@code null} * @throws IllegalArgumentException if {@code colorRawName} specifies * an unsupported color name or illegal hexadecimal value - * - * @profile common */ public static Color web(String colorRawName, double opacity) { if (colorRawName == null) { @@ -404,8 +388,6 @@ * * * @param color the hexadecimal string or color name - * - * @profile common */ public static Color web(String color) { return web(color, 1.0); @@ -547,1030 +529,736 @@ /** * The color alice blue with an RGB value of #F0F8FF. - * - * @profile common */ public static final Color ALICEBLUE = rgb(0xF0, 0xF8, 0xFF); /** * The color antique white with an RGB value of #FAEBD7. - * - * @profile common */ public static final Color ANTIQUEWHITE = rgb(0xFA, 0xEB, 0xD7); /** * The color aqua with an RGB value of #00FFFF. - * - * @profile common */ public static final Color AQUA = rgb(0x00, 0xFF, 0xFF); /** * The color aquamarine with an RGB value of #7FFFD4. - * - * @profile common */ public static final Color AQUAMARINE = rgb(0x7F, 0xFF, 0xD4); /** * The color azure with an RGB value of #F0FFFF. - * - * @profile common */ public static final Color AZURE = rgb(0xF0, 0xFF, 0xFF); /** * The color beige with an RGB value of #F5F5DC. - * - * @profile common */ public static final Color BEIGE = rgb(0xF5, 0xF5, 0xDC); /** * The color bisque with an RGB value of #FFE4C4. - * - * @profile common */ public static final Color BISQUE = rgb(0xFF, 0xE4, 0xC4); /** * The color black with an RGB value of #000000. - * - * @profile common */ public static final Color BLACK = rgb(0x00, 0x00, 0x00); /** * The color blanched almond with an RGB value of #FFEBCD. - * - * @profile common */ public static final Color BLANCHEDALMOND = rgb(0xFF, 0xEB, 0xCD); /** * The color blue with an RGB value of #0000FF. - * - * @profile common */ public static final Color BLUE = rgb(0x00, 0x00, 0xFF); /** * The color blue violet with an RGB value of #8A2BE2. - * - * @profile common */ public static final Color BLUEVIOLET = rgb(0x8A, 0x2B, 0xE2); /** * The color brown with an RGB value of #A52A2A. - * - * @profile common */ public static final Color BROWN = rgb(0xA5, 0x2A, 0x2A); /** * The color burly wood with an RGB value of #DEB887. - * - * @profile common */ public static final Color BURLYWOOD = rgb(0xDE, 0xB8, 0x87); /** * The color cadet blue with an RGB value of #5F9EA0. - * - * @profile common */ public static final Color CADETBLUE = rgb(0x5F, 0x9E, 0xA0); /** * The color chartreuse with an RGB value of #7FFF00. - * - * @profile common */ public static final Color CHARTREUSE = rgb(0x7F, 0xFF, 0x00); /** * The color chocolate with an RGB value of #D2691E. - * - * @profile common */ public static final Color CHOCOLATE = rgb(0xD2, 0x69, 0x1E); /** * The color coral with an RGB value of #FF7F50. - * - * @profile common */ public static final Color CORAL = rgb(0xFF, 0x7F, 0x50); /** * The color cornflower blue with an RGB value of #6495ED. - * - * @profile common */ public static final Color CORNFLOWERBLUE = rgb(0x64, 0x95, 0xED); /** * The color cornsilk with an RGB value of #FFF8DC. - * - * @profile common */ public static final Color CORNSILK = rgb(0xFF, 0xF8, 0xDC); /** * The color crimson with an RGB value of #DC143C. - * - * @profile common */ public static final Color CRIMSON = rgb(0xDC, 0x14, 0x3C); /** * The color cyan with an RGB value of #00FFFF. - * - * @profile common */ public static final Color CYAN = rgb(0x00, 0xFF, 0xFF); /** * The color dark blue with an RGB value of #00008B. - * - * @profile common */ public static final Color DARKBLUE = rgb(0x00, 0x00, 0x8B); /** * The color dark cyan with an RGB value of #008B8B. - * - * @profile common */ public static final Color DARKCYAN = rgb(0x00, 0x8B, 0x8B); /** * The color dark goldenrod with an RGB value of #B8860B. - * - * @profile common */ public static final Color DARKGOLDENROD = rgb(0xB8, 0x86, 0x0B); /** * The color dark gray with an RGB value of #A9A9A9. - * - * @profile common */ public static final Color DARKGRAY = rgb(0xA9, 0xA9, 0xA9); /** * The color dark green with an RGB value of #006400. - * - * @profile common */ public static final Color DARKGREEN = rgb(0x00, 0x64, 0x00); /** * The color dark grey with an RGB value of #A9A9A9. - * - * @profile common */ public static final Color DARKGREY = DARKGRAY; /** * The color dark khaki with an RGB value of #BDB76B. - * - * @profile common */ public static final Color DARKKHAKI = rgb(0xBD, 0xB7, 0x6B); /** * The color dark magenta with an RGB value of #8B008B. - * - * @profile common */ public static final Color DARKMAGENTA = rgb(0x8B, 0x00, 0x8B); /** * The color dark olive green with an RGB value of #556B2F. - * - * @profile common */ public static final Color DARKOLIVEGREEN = rgb(0x55, 0x6B, 0x2F); /** * The color dark orange with an RGB value of #FF8C00. - * - * @profile common */ public static final Color DARKORANGE = rgb(0xFF, 0x8C, 0x00); /** * The color dark orchid with an RGB value of #9932CC. - * - * @profile common */ public static final Color DARKORCHID = rgb(0x99, 0x32, 0xCC); /** * The color dark red with an RGB value of #8B0000. - * - * @profile common */ public static final Color DARKRED = rgb(0x8B, 0x00, 0x00); /** * The color dark salmon with an RGB value of #E9967A. - * - * @profile common */ public static final Color DARKSALMON = rgb(0xE9, 0x96, 0x7A); /** * The color dark sea green with an RGB value of #8FBC8F. - * - * @profile common */ public static final Color DARKSEAGREEN = rgb(0x8F, 0xBC, 0x8F); /** * The color dark slate blue with an RGB value of #483D8B. - * - * @profile common */ public static final Color DARKSLATEBLUE = rgb(0x48, 0x3D, 0x8B); /** * The color dark slate gray with an RGB value of #2F4F4F. - * - * @profile common */ public static final Color DARKSLATEGRAY = rgb(0x2F, 0x4F, 0x4F); /** * The color dark slate grey with an RGB value of #2F4F4F. - * - * @profile common */ public static final Color DARKSLATEGREY = DARKSLATEGRAY; /** * The color dark turquoise with an RGB value of #00CED1. - * - * @profile common */ public static final Color DARKTURQUOISE = rgb(0x00, 0xCE, 0xD1); /** * The color dark violet with an RGB value of #9400D3. - * - * @profile common */ public static final Color DARKVIOLET = rgb(0x94, 0x00, 0xD3); /** * The color deep pink with an RGB value of #FF1493. - * - * @profile common */ public static final Color DEEPPINK = rgb(0xFF, 0x14, 0x93); /** * The color deep sky blue with an RGB value of #00BFFF. - * - * @profile common */ public static final Color DEEPSKYBLUE = rgb(0x00, 0xBF, 0xFF); /** * The color dim gray with an RGB value of #696969. - * - * @profile common */ public static final Color DIMGRAY = rgb(0x69, 0x69, 0x69); /** * The color dim grey with an RGB value of #696969. - * - * @profile common */ public static final Color DIMGREY = DIMGRAY; /** * The color dodger blue with an RGB value of #1E90FF. - * - * @profile common */ public static final Color DODGERBLUE = rgb(0x1E, 0x90, 0xFF); /** * The color firebrick with an RGB value of #B22222. - * - * @profile common */ public static final Color FIREBRICK = rgb(0xB2, 0x22, 0x22); /** * The color floral white with an RGB value of #FFFAF0. - * - * @profile common */ public static final Color FLORALWHITE = rgb(0xFF, 0xFA, 0xF0); /** * The color forest green with an RGB value of #228B22. - * - * @profile common */ public static final Color FORESTGREEN = rgb(0x22, 0x8B, 0x22); /** * The color fuchsia with an RGB value of #FF00FF. - * - * @profile common */ public static final Color FUCHSIA = rgb(0xFF, 0x00, 0xFF); /** * The color gainsboro with an RGB value of #DCDCDC. - * - * @profile common */ public static final Color GAINSBORO = rgb(0xDC, 0xDC, 0xDC); /** * The color ghost white with an RGB value of #F8F8FF. - * - * @profile common */ public static final Color GHOSTWHITE = rgb(0xF8, 0xF8, 0xFF); /** * The color gold with an RGB value of #FFD700. - * - * @profile common */ public static final Color GOLD = rgb(0xFF, 0xD7, 0x00); /** * The color goldenrod with an RGB value of #DAA520. - * - * @profile common */ public static final Color GOLDENROD = rgb(0xDA, 0xA5, 0x20); /** * The color gray with an RGB value of #808080. - * - * @profile common */ public static final Color GRAY = rgb(0x80, 0x80, 0x80); /** * The color green with an RGB value of #008000. - * - * @profile common */ public static final Color GREEN = rgb(0x00, 0x80, 0x00); /** * The color green yellow with an RGB value of #ADFF2F. - * - * @profile common */ public static final Color GREENYELLOW = rgb(0xAD, 0xFF, 0x2F); /** * The color grey with an RGB value of #808080. - * - * @profile common */ public static final Color GREY = GRAY; /** * The color honeydew with an RGB value of #F0FFF0. - * - * @profile common */ public static final Color HONEYDEW = rgb(0xF0, 0xFF, 0xF0); /** * The color hot pink with an RGB value of #FF69B4. - * - * @profile common */ public static final Color HOTPINK = rgb(0xFF, 0x69, 0xB4); /** * The color indian red with an RGB value of #CD5C5C. - * - * @profile common */ public static final Color INDIANRED = rgb(0xCD, 0x5C, 0x5C); /** * The color indigo with an RGB value of #4B0082. - * - * @profile common */ public static final Color INDIGO = rgb(0x4B, 0x00, 0x82); /** * The color ivory with an RGB value of #FFFFF0. - * - * @profile common */ public static final Color IVORY = rgb(0xFF, 0xFF, 0xF0); /** * The color khaki with an RGB value of #F0E68C. - * - * @profile common */ public static final Color KHAKI = rgb(0xF0, 0xE6, 0x8C); /** * The color lavender with an RGB value of #E6E6FA. - * - * @profile common */ public static final Color LAVENDER = rgb(0xE6, 0xE6, 0xFA); /** * The color lavender blush with an RGB value of #FFF0F5. - * - * @profile common */ public static final Color LAVENDERBLUSH = rgb(0xFF, 0xF0, 0xF5); /** * The color lawn green with an RGB value of #7CFC00. - * - * @profile common */ public static final Color LAWNGREEN = rgb(0x7C, 0xFC, 0x00); /** * The color lemon chiffon with an RGB value of #FFFACD. - * - * @profile common */ public static final Color LEMONCHIFFON = rgb(0xFF, 0xFA, 0xCD); /** * The color light blue with an RGB value of #ADD8E6. - * - * @profile common */ public static final Color LIGHTBLUE = rgb(0xAD, 0xD8, 0xE6); /** * The color light coral with an RGB value of #F08080. - * - * @profile common */ public static final Color LIGHTCORAL = rgb(0xF0, 0x80, 0x80); /** * The color light cyan with an RGB value of #E0FFFF. - * - * @profile common */ public static final Color LIGHTCYAN = rgb(0xE0, 0xFF, 0xFF); /** * The color light goldenrod yellow with an RGB value of #FAFAD2. - * - * @profile common */ public static final Color LIGHTGOLDENRODYELLOW = rgb(0xFA, 0xFA, 0xD2); /** * The color light gray with an RGB value of #D3D3D3. - * - * @profile common */ public static final Color LIGHTGRAY = rgb(0xD3, 0xD3, 0xD3); /** * The color light green with an RGB value of #90EE90. - * - * @profile common */ public static final Color LIGHTGREEN = rgb(0x90, 0xEE, 0x90); /** * The color light grey with an RGB value of #D3D3D3. - * - * @profile common */ public static final Color LIGHTGREY = LIGHTGRAY; /** * The color light pink with an RGB value of #FFB6C1. - * - * @profile common */ public static final Color LIGHTPINK = rgb(0xFF, 0xB6, 0xC1); /** * The color light salmon with an RGB value of #FFA07A. - * - * @profile common */ public static final Color LIGHTSALMON = rgb(0xFF, 0xA0, 0x7A); /** * The color light sea green with an RGB value of #20B2AA. - * - * @profile common */ public static final Color LIGHTSEAGREEN = rgb(0x20, 0xB2, 0xAA); /** * The color light sky blue with an RGB value of #87CEFA. - * - * @profile common */ public static final Color LIGHTSKYBLUE = rgb(0x87, 0xCE, 0xFA); /** * The color light slate gray with an RGB value of #778899. - * - * @profile common */ public static final Color LIGHTSLATEGRAY = rgb(0x77, 0x88, 0x99); /** * The color light slate grey with an RGB value of #778899. - * - * @profile common */ public static final Color LIGHTSLATEGREY = LIGHTSLATEGRAY; /** * The color light steel blue with an RGB value of #B0C4DE. - * - * @profile common */ public static final Color LIGHTSTEELBLUE = rgb(0xB0, 0xC4, 0xDE); /** * The color light yellow with an RGB value of #FFFFE0. - * - * @profile common */ public static final Color LIGHTYELLOW = rgb(0xFF, 0xFF, 0xE0); /** * The color lime with an RGB value of #00FF00. - * - * @profile common */ public static final Color LIME = rgb(0x00, 0xFF, 0x00); /** * The color lime green with an RGB value of #32CD32. - * - * @profile common */ public static final Color LIMEGREEN = rgb(0x32, 0xCD, 0x32); /** * The color linen with an RGB value of #FAF0E6. - * - * @profile common */ public static final Color LINEN = rgb(0xFA, 0xF0, 0xE6); /** * The color magenta with an RGB value of #FF00FF. - * - * @profile common */ public static final Color MAGENTA = rgb(0xFF, 0x00, 0xFF); /** * The color maroon with an RGB value of #800000. - * - * @profile common */ public static final Color MAROON = rgb(0x80, 0x00, 0x00); /** * The color medium aquamarine with an RGB value of #66CDAA. - * - * @profile common */ public static final Color MEDIUMAQUAMARINE = rgb(0x66, 0xCD, 0xAA); /** * The color medium blue with an RGB value of #0000CD. - * - * @profile common */ public static final Color MEDIUMBLUE = rgb(0x00, 0x00, 0xCD); /** * The color medium orchid with an RGB value of #BA55D3. - * - * @profile common */ public static final Color MEDIUMORCHID = rgb(0xBA, 0x55, 0xD3); /** * The color medium purple with an RGB value of #9370DB. - * - * @profile common */ public static final Color MEDIUMPURPLE = rgb(0x93, 0x70, 0xDB); /** * The color medium sea green with an RGB value of #3CB371. - * - * @profile common */ public static final Color MEDIUMSEAGREEN = rgb(0x3C, 0xB3, 0x71); /** * The color medium slate blue with an RGB value of #7B68EE. - * - * @profile common */ public static final Color MEDIUMSLATEBLUE = rgb(0x7B, 0x68, 0xEE); /** * The color medium spring green with an RGB value of #00FA9A. - * - * @profile common */ public static final Color MEDIUMSPRINGGREEN = rgb(0x00, 0xFA, 0x9A); /** * The color medium turquoise with an RGB value of #48D1CC. - * - * @profile common */ public static final Color MEDIUMTURQUOISE = rgb(0x48, 0xD1, 0xCC); /** * The color medium violet red with an RGB value of #C71585. - * - * @profile common */ public static final Color MEDIUMVIOLETRED = rgb(0xC7, 0x15, 0x85); /** * The color midnight blue with an RGB value of #191970. - * - * @profile common */ public static final Color MIDNIGHTBLUE = rgb(0x19, 0x19, 0x70); /** * The color mint cream with an RGB value of #F5FFFA. - * - * @profile common */ public static final Color MINTCREAM = rgb(0xF5, 0xFF, 0xFA); /** * The color misty rose with an RGB value of #FFE4E1. - * - * @profile common */ public static final Color MISTYROSE = rgb(0xFF, 0xE4, 0xE1); /** * The color moccasin with an RGB value of #FFE4B5. - * - * @profile common */ public static final Color MOCCASIN = rgb(0xFF, 0xE4, 0xB5); /** * The color navajo white with an RGB value of #FFDEAD. - * - * @profile common */ public static final Color NAVAJOWHITE = rgb(0xFF, 0xDE, 0xAD); /** * The color navy with an RGB value of #000080. - * - * @profile common */ public static final Color NAVY = rgb(0x00, 0x00, 0x80); /** * The color old lace with an RGB value of #FDF5E6. - * - * @profile common */ public static final Color OLDLACE = rgb(0xFD, 0xF5, 0xE6); /** * The color olive with an RGB value of #808000. - * - * @profile common */ public static final Color OLIVE = rgb(0x80, 0x80, 0x00); /** * The color olive drab with an RGB value of #6B8E23. - * - * @profile common */ public static final Color OLIVEDRAB = rgb(0x6B, 0x8E, 0x23); /** * The color orange with an RGB value of #FFA500. - * - * @profile common */ public static final Color ORANGE = rgb(0xFF, 0xA5, 0x00); /** * The color orange red with an RGB value of #FF4500. - * - * @profile common */ public static final Color ORANGERED = rgb(0xFF, 0x45, 0x00); /** * The color orchid with an RGB value of #DA70D6. - * - * @profile common */ public static final Color ORCHID = rgb(0xDA, 0x70, 0xD6); /** * The color pale goldenrod with an RGB value of #EEE8AA. - * - * @profile common */ public static final Color PALEGOLDENROD = rgb(0xEE, 0xE8, 0xAA); /** * The color pale green with an RGB value of #98FB98. - * - * @profile common */ public static final Color PALEGREEN = rgb(0x98, 0xFB, 0x98); /** * The color pale turquoise with an RGB value of #AFEEEE. - * - * @profile common */ public static final Color PALETURQUOISE = rgb(0xAF, 0xEE, 0xEE); /** * The color pale violet red with an RGB value of #DB7093. - * - * @profile common */ public static final Color PALEVIOLETRED = rgb(0xDB, 0x70, 0x93); /** * The color papaya whip with an RGB value of #FFEFD5. - * - * @profile common */ public static final Color PAPAYAWHIP = rgb(0xFF, 0xEF, 0xD5); /** * The color peach puff with an RGB value of #FFDAB9. - * - * @profile common */ public static final Color PEACHPUFF = rgb(0xFF, 0xDA, 0xB9); /** * The color peru with an RGB value of #CD853F. - * - * @profile common */ public static final Color PERU = rgb(0xCD, 0x85, 0x3F); /** * The color pink with an RGB value of #FFC0CB. - * - * @profile common */ public static final Color PINK = rgb(0xFF, 0xC0, 0xCB); /** * The color plum with an RGB value of #DDA0DD. - * - * @profile common */ public static final Color PLUM = rgb(0xDD, 0xA0, 0xDD); /** * The color powder blue with an RGB value of #B0E0E6. - * - * @profile common */ public static final Color POWDERBLUE = rgb(0xB0, 0xE0, 0xE6); /** * The color purple with an RGB value of #800080. - * - * @profile common */ public static final Color PURPLE = rgb(0x80, 0x00, 0x80); /** * The color red with an RGB value of #FF0000. - * - * @profile common */ public static final Color RED = rgb(0xFF, 0x00, 0x00); /** * The color rosy brown with an RGB value of #BC8F8F. - * - * @profile common */ public static final Color ROSYBROWN = rgb(0xBC, 0x8F, 0x8F); /** * The color royal blue with an RGB value of #4169E1. - * - * @profile common */ public static final Color ROYALBLUE = rgb(0x41, 0x69, 0xE1); /** * The color saddle brown with an RGB value of #8B4513. - * - * @profile common */ public static final Color SADDLEBROWN = rgb(0x8B, 0x45, 0x13); /** * The color salmon with an RGB value of #FA8072. - * - * @profile common */ public static final Color SALMON = rgb(0xFA, 0x80, 0x72); /** * The color sandy brown with an RGB value of #F4A460. - * - * @profile common */ public static final Color SANDYBROWN = rgb(0xF4, 0xA4, 0x60); /** * The color sea green with an RGB value of #2E8B57. - * - * @profile common */ public static final Color SEAGREEN = rgb(0x2E, 0x8B, 0x57); /** * The color sea shell with an RGB value of #FFF5EE. - * - * @profile common */ public static final Color SEASHELL = rgb(0xFF, 0xF5, 0xEE); /** * The color sienna with an RGB value of #A0522D. - * - * @profile common */ public static final Color SIENNA = rgb(0xA0, 0x52, 0x2D); /** * The color silver with an RGB value of #C0C0C0. - * - * @profile common */ public static final Color SILVER = rgb(0xC0, 0xC0, 0xC0); /** * The color sky blue with an RGB value of #87CEEB. - * - * @profile common */ public static final Color SKYBLUE = rgb(0x87, 0xCE, 0xEB); /** * The color slate blue with an RGB value of #6A5ACD. - * - * @profile common */ public static final Color SLATEBLUE = rgb(0x6A, 0x5A, 0xCD); /** * The color slate gray with an RGB value of #708090. - * - * @profile common */ public static final Color SLATEGRAY = rgb(0x70, 0x80, 0x90); /** * The color slate grey with an RGB value of #708090. - * - * @profile common */ public static final Color SLATEGREY = SLATEGRAY; /** * The color snow with an RGB value of #FFFAFA. - * - * @profile common */ public static final Color SNOW = rgb(0xFF, 0xFA, 0xFA); /** * The color spring green with an RGB value of #00FF7F. - * - * @profile common */ public static final Color SPRINGGREEN = rgb(0x00, 0xFF, 0x7F); /** * The color steel blue with an RGB value of #4682B4. - * - * @profile common */ public static final Color STEELBLUE = rgb(0x46, 0x82, 0xB4); /** * The color tan with an RGB value of #D2B48C. - * - * @profile common */ public static final Color TAN = rgb(0xD2, 0xB4, 0x8C); /** * The color teal with an RGB value of #008080. - * - * @profile common */ public static final Color TEAL = rgb(0x00, 0x80, 0x80); /** * The color thistle with an RGB value of #D8BFD8. - * - * @profile common */ public static final Color THISTLE = rgb(0xD8, 0xBF, 0xD8); /** * The color tomato with an RGB value of #FF6347. - * - * @profile common */ public static final Color TOMATO = rgb(0xFF, 0x63, 0x47); /** * The color turquoise with an RGB value of #40E0D0. - * - * @profile common */ public static final Color TURQUOISE = rgb(0x40, 0xE0, 0xD0); /** * The color violet with an RGB value of #EE82EE. - * - * @profile common */ public static final Color VIOLET = rgb(0xEE, 0x82, 0xEE); /** * The color wheat with an RGB value of #F5DEB3. - * - * @profile common */ public static final Color WHEAT = rgb(0xF5, 0xDE, 0xB3); /** * The color white with an RGB value of #FFFFFF. - * - * @profile common */ public static final Color WHITE = rgb(0xFF, 0xFF, 0xFF); /** * The color white smoke with an RGB value of #F5F5F5. - * - * @profile common */ public static final Color WHITESMOKE = rgb(0xF5, 0xF5, 0xF5); /** * The color yellow with an RGB value of #FFFF00. - * - * @profile common */ public static final Color YELLOW = rgb(0xFF, 0xFF, 0x00); /** * The color yellow green with an RGB value of #9ACD32. - * - * @profile common */ public static final Color YELLOWGREEN = rgb(0x9A, 0xCD, 0x32); @@ -1749,7 +1437,6 @@ * The red component of the {@code Color}, in the range {@code 0.0-1.0}. * * @defaultvalue 0.0 - * @profile common */ public final double getRed() { return red; } private float red; @@ -1758,7 +1445,6 @@ * The green component of the {@code Color}, in the range {@code 0.0-1.0}. * * @defaultvalue 0.0 - * @profile common */ public final double getGreen() { return green; } private float green; @@ -1767,7 +1453,6 @@ * The blue component of the {@code Color}, in the range {@code 0.0-1.0}. * * @defaultvalue 0.0 - * @profile common */ public final double getBlue() { return blue; } private float blue; @@ -1776,7 +1461,6 @@ * The opacity of the {@code Color}, in the range {@code 0.0-1.0}. * * @defaultvalue 1.0 - * @profile common */ public final double getOpacity() { return opacity; } private float opacity = 1; @@ -1873,8 +1557,6 @@ * The returned string might be empty but cannot be {@code null}. * * @return the string representation - * - * @profile common */ @Override public String toString() { int r = (int)Math.round(red * 255.0); diff --git a/javafx-ui-common/src/javafx/scene/paint/CycleMethod.java b/javafx-ui-common/src/javafx/scene/paint/CycleMethod.java --- a/javafx-ui-common/src/javafx/scene/paint/CycleMethod.java +++ b/javafx-ui-common/src/javafx/scene/paint/CycleMethod.java @@ -29,8 +29,6 @@ * This enum defines one of the following methods to use when painting * outside the gradient bounds: {@code CycleMethod.NO_CYCLE}, * {@code CycleMethod.REFLECT}, or {@code CycleMethod.REPEAT}. - * - * @profile common */ public enum CycleMethod { diff --git a/javafx-ui-common/src/javafx/scene/paint/LinearGradient.java b/javafx-ui-common/src/javafx/scene/paint/LinearGradient.java --- a/javafx-ui-common/src/javafx/scene/paint/LinearGradient.java +++ b/javafx-ui-common/src/javafx/scene/paint/LinearGradient.java @@ -71,8 +71,6 @@ Rectangle r2 = new Rectangle(125, 0, 100, 100); r2.setFill(lg2); - * - * @profile common */ public final class LinearGradient extends Paint { private double startX; @@ -82,8 +80,7 @@ * If proportional is true (the default), this value specifies a * point on a unit square that will be scaled to match the size of the * the shape that the gradient fills. - * - * @profile common + ( * @defaultvalue 0.0 */ public final double getStartX() { @@ -98,7 +95,6 @@ * point on a unit square that will be scaled to match the size of the * the shape that the gradient fills. * - * @profile common * @defaultvalue 0.0 */ public final double getStartY() { @@ -113,7 +109,6 @@ * point on a unit square that will be scaled to match the size of the * the shape that the gradient fills. * - * @profile common * @defaultvalue 1.0 */ public final double getEndX() { @@ -128,7 +123,6 @@ * point on a unit square that will be scaled to match the size of the * the shape that the gradient fills. * - * @profile common * @defaultvalue 1.0 */ public final double getEndY() { @@ -145,7 +139,6 @@ * If this flag is false, then the coordinates are specified in the local * coordinate system of the node. * - * @profile common * @defaultvalue true */ public final boolean isProportional() { @@ -159,7 +152,6 @@ * to the {@code LinearGradient}: {@code CycleMethod.NO_CYCLE}, * {@code CycleMethod.REFLECT}, or {@code CycleMethod.REPEAT}. * - * @profile common * @defaultvalue NO_CYCLE */ public final CycleMethod getCycleMethod() { @@ -180,7 +172,6 @@ *

The list is unmodifiable and will throw * {@code UnsupportedOperationException} on each modification attempt.

* - * @profile common * @defaultvalue empty */ @ReturnsUnmodifiableCollection diff --git a/javafx-ui-common/src/javafx/scene/paint/Paint.java b/javafx-ui-common/src/javafx/scene/paint/Paint.java --- a/javafx-ui-common/src/javafx/scene/paint/Paint.java +++ b/javafx-ui-common/src/javafx/scene/paint/Paint.java @@ -28,8 +28,6 @@ /** * Base class for a color or gradients used to fill shapes and backgrounds when * rendering the scene graph. - * - * @profile common */ public abstract class Paint { /** diff --git a/javafx-ui-common/src/javafx/scene/paint/RadialGradient.java b/javafx-ui-common/src/javafx/scene/paint/RadialGradient.java --- a/javafx-ui-common/src/javafx/scene/paint/RadialGradient.java +++ b/javafx-ui-common/src/javafx/scene/paint/RadialGradient.java @@ -64,8 +64,6 @@ * the colors along the gradient. The {@code Stop#offset} variable must be * the range 0.0 to 1.0 and act like keyframes along the gradient. * They mark where the gradient should be exactly a particular color. - * - * @profile common */ public final class RadialGradient extends Paint { private double focusAngle; @@ -73,8 +71,6 @@ /** * Defines the angle in degrees from the center of the gradient * to the focus point to which the first color is mapped. - * - * @profile common */ public final double getFocusAngle() { return focusAngle; @@ -87,8 +83,6 @@ * focus point to which the first color is mapped. * A distance of 0.0 will be at the center of the gradient circle. * A distance of 1.0 will be on the circumference of the gradient circle. - * - * @profile common */ public final double getFocusDistance() { return focusDistance; @@ -103,7 +97,6 @@ * the shape that the gradient fills. * The last color of the gradient is mapped to the perimeter of this circle. * - * @profile common * @defaultvalue 0.0 */ public final double getCenterX() { @@ -119,7 +112,6 @@ * the shape that the gradient fills. * The last color of the gradient is mapped to the perimeter of this circle. * - * @profile common * @defaultvalue 0.0 */ public final double getCenterY() { @@ -134,7 +126,6 @@ * size relative to unit square that will be scaled to match the size of the * the shape that the gradient fills. * - * @profile common * @defaultvalue 1.0 */ public final double getRadius() { @@ -152,7 +143,6 @@ * If this flag is false, then the center coordinates and the radius are * specified in the local coordinate system of the node. * - * @profile common * @defaultvalue true */ public final boolean isProportional() { @@ -166,7 +156,6 @@ * to the {@code LinearGradient}: {@code CycleMethod.NO_CYCLE}, * {@code CycleMethod.REFLECT}, or {@code CycleMethod.REPEAT}. * - * @profile common * @defaultvalue NO_CYCLE */ public final CycleMethod getCycleMethod() { @@ -187,7 +176,6 @@ *

The list is unmodifiable and will throw * {@code UnsupportedOperationException} on each modification attempt.

* - * @profile common * @defaultvalue empty */ @ReturnsUnmodifiableCollection diff --git a/javafx-ui-common/src/javafx/scene/paint/Stop.java b/javafx-ui-common/src/javafx/scene/paint/Stop.java --- a/javafx-ui-common/src/javafx/scene/paint/Stop.java +++ b/javafx-ui-common/src/javafx/scene/paint/Stop.java @@ -45,8 +45,6 @@ * Rectangle r = new Rectangle(); * r.setFill(lg); * - * - * @profile common */ public final class Stop { diff --git a/javafx-ui-common/src/javafx/scene/shape/Arc.java b/javafx-ui-common/src/javafx/scene/shape/Arc.java --- a/javafx-ui-common/src/javafx/scene/shape/Arc.java +++ b/javafx-ui-common/src/javafx/scene/shape/Arc.java @@ -61,8 +61,6 @@ arc.setLength(270.0f); arc.setType(ArcType.ROUND); - * - * @profile common */ public class Arc extends Shape { @@ -108,7 +106,6 @@ /** * Defines the X coordinate of the center point of the arc. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty centerX; @@ -150,7 +147,6 @@ /** * Defines the Y coordinate of the center point of the arc. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty centerY; @@ -193,7 +189,6 @@ * Defines the overall width (horizontal radius) of the full ellipse * of which this arc is a partial section. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty radiusX; @@ -236,7 +231,6 @@ * Defines the overall height (veritcal radius) of the full ellipse * of which this arc is a partial section. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty radiusY; @@ -278,7 +272,6 @@ /** * Defines the starting angle of the arc in degrees. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty startAngle; @@ -320,7 +313,6 @@ /** * Defines the angular extent of the arc in degrees. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty length; @@ -363,7 +355,6 @@ * Defines the closure type for the arc: * {@link ArcType#OPEN}, {@link ArcType#CHORD},or {@link ArcType#ROUND}. * - * @profile common * @defaultvalue OPEN */ private ObjectProperty type; diff --git a/javafx-ui-common/src/javafx/scene/shape/ArcTo.java b/javafx-ui-common/src/javafx/scene/shape/ArcTo.java --- a/javafx-ui-common/src/javafx/scene/shape/ArcTo.java +++ b/javafx-ui-common/src/javafx/scene/shape/ArcTo.java @@ -66,8 +66,6 @@ path.getElements().add(moveTo); path.getElements().add(arcTo); - * - * @profile common */ public class ArcTo extends PathElement { @@ -103,7 +101,6 @@ /** * The horizontal radius to use for the arc. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty radiusX; @@ -144,7 +141,6 @@ /** * The vertical radius to use for the arc. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty radiusY; @@ -185,7 +181,6 @@ /** * The x-axis rotation in degrees. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty xAxisRotation; @@ -236,7 +231,6 @@ /** * The large arc flag. * - * @profile common * @defaultvalue false */ private BooleanProperty largeArcFlag; @@ -277,7 +271,6 @@ /** * The sweep flag * - * @profile common * @defaultvalue false */ private BooleanProperty sweepFlag; @@ -318,7 +311,6 @@ /** * The x coordinate to arc to. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty x; @@ -359,7 +351,6 @@ /** * The y coordinate to arc to. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty y; diff --git a/javafx-ui-common/src/javafx/scene/shape/ArcType.java b/javafx-ui-common/src/javafx/scene/shape/ArcType.java --- a/javafx-ui-common/src/javafx/scene/shape/ArcType.java +++ b/javafx-ui-common/src/javafx/scene/shape/ArcType.java @@ -29,24 +29,18 @@ /** * {@code ArcType} specifies the closure type for {@link Arc} objects. - * - * @profile common */ public enum ArcType { /** * The closure type for an open arc with no path segments connecting * the two ends of the arc segment. - * - * @profile common */ OPEN, /** * The closure type for an arc closed by drawing a straight line segment * from the start of the arc segment to the end of the arc segment. - * - * @profile common */ CHORD, @@ -54,8 +48,6 @@ * The closure type for an arc closed by drawing straight line segments * from the start of the arc segment to the center of the full ellipse * and from that point to the end of the arc segment. - * - * @profile common */ ROUND } diff --git a/javafx-ui-common/src/javafx/scene/shape/Circle.java b/javafx-ui-common/src/javafx/scene/shape/Circle.java --- a/javafx-ui-common/src/javafx/scene/shape/Circle.java +++ b/javafx-ui-common/src/javafx/scene/shape/Circle.java @@ -58,8 +58,6 @@ circle.setRadius(50.0f); } - * - * @profile common */ public class Circle extends Shape { @@ -123,7 +121,6 @@ /** * Defines the horizontal position of the center of the circle in pixels. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty centerX; @@ -165,7 +162,6 @@ /** * Defines the vertical position of the center of the circle in pixels. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty centerY; @@ -207,7 +203,6 @@ /** * Defines the radius of the circle in pixels. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty radius; diff --git a/javafx-ui-common/src/javafx/scene/shape/ClosePath.java b/javafx-ui-common/src/javafx/scene/shape/ClosePath.java --- a/javafx-ui-common/src/javafx/scene/shape/ClosePath.java +++ b/javafx-ui-common/src/javafx/scene/shape/ClosePath.java @@ -35,15 +35,11 @@ * *

For more information on path elements see the {@link Path} and * {@link PathElement} classes. - * - * @profile common */ public class ClosePath extends PathElement { /** * {@inheritDoc} - * - * @profile common */ @Override void addTo(PGPath pgPath) { diff --git a/javafx-ui-common/src/javafx/scene/shape/CubicCurve.java b/javafx-ui-common/src/javafx/scene/shape/CubicCurve.java --- a/javafx-ui-common/src/javafx/scene/shape/CubicCurve.java +++ b/javafx-ui-common/src/javafx/scene/shape/CubicCurve.java @@ -59,8 +59,6 @@ cubic.setEndY(50.0f); } - * - * @profile common */ public class CubicCurve extends Shape { @@ -68,7 +66,6 @@ /** * Defines the X coordinate of the start point of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty startX; @@ -138,7 +135,6 @@ /** * Defines the Y coordinate of the start point of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty startY; @@ -181,7 +177,6 @@ * Defines the X coordinate of the first control point * of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlX1; @@ -224,7 +219,6 @@ * Defines the Y coordinate of the first control point * of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlY1; @@ -267,7 +261,6 @@ * Defines the X coordinate of the second control point * of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlX2; @@ -310,7 +303,6 @@ * Defines the Y coordinate of the second control point * of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlY2; @@ -352,7 +344,6 @@ /** * Defines the X coordinate of the end point of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty endX; @@ -393,7 +384,6 @@ /** * Defines the Y coordinate of the end point of the cubic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty endY; diff --git a/javafx-ui-common/src/javafx/scene/shape/CubicCurveTo.java b/javafx-ui-common/src/javafx/scene/shape/CubicCurveTo.java --- a/javafx-ui-common/src/javafx/scene/shape/CubicCurveTo.java +++ b/javafx-ui-common/src/javafx/scene/shape/CubicCurveTo.java @@ -66,8 +66,6 @@ path.getElements().add(moveTo); path.getElements().add(cubicTo); - * - * @profile common */ public class CubicCurveTo extends PathElement { @@ -100,7 +98,6 @@ /** * Defines the X coordinate of the first Bézier control point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlX1; @@ -140,7 +137,6 @@ /** * Defines the Y coordinate of the first Bézier control point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlY1; @@ -180,7 +176,6 @@ /** * Defines the X coordinate of the second Bézier control point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlX2; @@ -220,7 +215,6 @@ /** * Defines the Y coordinate of the second Bézier control point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlY2; @@ -260,7 +254,6 @@ /** * Defines the X coordinate of the final end point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty x; @@ -300,7 +293,6 @@ /** * Defines the Y coordinate of the final end point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty y; @@ -339,8 +331,6 @@ /** * Adds the curved path element to the specified path. - * - * @profile common */ @Override void addTo(PGPath pgPath) { diff --git a/javafx-ui-common/src/javafx/scene/shape/Ellipse.java b/javafx-ui-common/src/javafx/scene/shape/Ellipse.java --- a/javafx-ui-common/src/javafx/scene/shape/Ellipse.java +++ b/javafx-ui-common/src/javafx/scene/shape/Ellipse.java @@ -53,8 +53,6 @@ ellipse.setRadiusX(50.0f); ellipse.setRadiusY(25.0f); - * - * @profile common */ public class Ellipse extends Shape { @@ -98,7 +96,6 @@ /** * Defines the horizontal position of the center of the ellipse in pixels. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty centerX; @@ -140,7 +137,6 @@ /** * Defines the vertical position of the center of the ellipse in pixels. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty centerY; @@ -181,7 +177,6 @@ /** * Defines the width of the ellipse in pixels. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty radiusX; @@ -223,7 +218,6 @@ /** * Defines the height of the ellipse in pixels. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty radiusY; diff --git a/javafx-ui-common/src/javafx/scene/shape/FillRule.java b/javafx-ui-common/src/javafx/scene/shape/FillRule.java --- a/javafx-ui-common/src/javafx/scene/shape/FillRule.java +++ b/javafx-ui-common/src/javafx/scene/shape/FillRule.java @@ -27,8 +27,6 @@ /** * The fill rule for determining the interior of the path. - * - * @profile common */ public enum FillRule { @@ -41,8 +39,6 @@ *

* *

- * - * @profile common */ EVEN_ODD, //(GeneralPath.WIND_EVEN_ODD), @@ -56,7 +52,6 @@ *

* *

- * @profile common */ NON_ZERO //(GeneralPath.WIND_NON_ZERO) } diff --git a/javafx-ui-common/src/javafx/scene/shape/HLineTo.java b/javafx-ui-common/src/javafx/scene/shape/HLineTo.java --- a/javafx-ui-common/src/javafx/scene/shape/HLineTo.java +++ b/javafx-ui-common/src/javafx/scene/shape/HLineTo.java @@ -49,8 +49,6 @@ path.getElements().add(new MoveTo(0.0f, 0.0f)); path.getElements().add(new HLineTo(80.0f)); - * - * @profile common */ public class HLineTo extends PathElement { @@ -71,7 +69,6 @@ /** * Defines the X coordinate. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty x; diff --git a/javafx-ui-common/src/javafx/scene/shape/Line.java b/javafx-ui-common/src/javafx/scene/shape/Line.java --- a/javafx-ui-common/src/javafx/scene/shape/Line.java +++ b/javafx-ui-common/src/javafx/scene/shape/Line.java @@ -62,8 +62,6 @@ line.setEndY(100.0f); } - * - * @profile common */ public class Line extends Shape { @@ -100,7 +98,6 @@ /** * The X coordinate of the start point of the line segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty startX; @@ -141,7 +138,6 @@ /** * The Y coordinate of the start point of the line segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty startY; @@ -183,7 +179,6 @@ /** * The X coordinate of the end point of the line segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty endX; @@ -225,7 +220,6 @@ /** * The Y coordinate of the end point of the line segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty endY; diff --git a/javafx-ui-common/src/javafx/scene/shape/LineTo.java b/javafx-ui-common/src/javafx/scene/shape/LineTo.java --- a/javafx-ui-common/src/javafx/scene/shape/LineTo.java +++ b/javafx-ui-common/src/javafx/scene/shape/LineTo.java @@ -50,8 +50,6 @@ path.getElements().add(new MoveTo(0.0f, 50.0f)); path.getElements().add(new LineTo(100.0f, 100.0f)); - * - * @profile common */ public class LineTo extends PathElement { @@ -74,7 +72,6 @@ /** * Defines the X coordinate. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty x; @@ -115,7 +112,6 @@ /** * Defines the Y coordinate. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty y; diff --git a/javafx-ui-common/src/javafx/scene/shape/MoveTo.java b/javafx-ui-common/src/javafx/scene/shape/MoveTo.java --- a/javafx-ui-common/src/javafx/scene/shape/MoveTo.java +++ b/javafx-ui-common/src/javafx/scene/shape/MoveTo.java @@ -50,8 +50,6 @@ path.getElements().add(new MoveTo(0.0f, 0.0f)); path.getElements().add(new LineTo(100.0f, 100.0f)); - * - * @profile common */ public class MoveTo extends PathElement { @@ -74,7 +72,6 @@ /** * Defines the specified X coordinate. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty x; @@ -115,7 +112,6 @@ /** * Defines the specified Y coordinate. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty y; diff --git a/javafx-ui-common/src/javafx/scene/shape/Path.java b/javafx-ui-common/src/javafx/scene/shape/Path.java --- a/javafx-ui-common/src/javafx/scene/shape/Path.java +++ b/javafx-ui-common/src/javafx/scene/shape/Path.java @@ -91,9 +91,6 @@ path.getElements().add(arcTo); - * - * - * @profile common */ public class Path extends Shape { @@ -145,7 +142,6 @@ * {@code FillRile.EVEN_ODD} or {@code FillRule.NON_ZERO}. * The default value is {@code FillRule.NON_ZERO}. * - * @profile common * @defaultvalue FillRule.NON_ZERO */ private ObjectProperty fillRule; @@ -188,7 +184,6 @@ /** * Defines the array of path elements of this path. * - * @profile common * @defaultvalue empty */ private final ObservableList elements = new TrackableObservableList() { diff --git a/javafx-ui-common/src/javafx/scene/shape/PathElement.java b/javafx-ui-common/src/javafx/scene/shape/PathElement.java --- a/javafx-ui-common/src/javafx/scene/shape/PathElement.java +++ b/javafx-ui-common/src/javafx/scene/shape/PathElement.java @@ -42,16 +42,12 @@ * The {@code PathElement} class represents an abstract element * of the {@link Path} that can represent any geometric objects * like straight lines, arcs, quadratic curves, cubic curves, etc. - * - * @profile common */ public abstract class PathElement { /** * Defines the sequence of {@code Path} objects this path element * is attached to. - * - * @profile common */ WeakReferenceQueue impl_nodes = new WeakReferenceQueue(); @@ -85,7 +81,6 @@ * are added to the coordinates of the previous PathElement to compute the * actual coordinates. * - * @profile common * @defaultvalue true */ private BooleanProperty absolute; diff --git a/javafx-ui-common/src/javafx/scene/shape/Polygon.java b/javafx-ui-common/src/javafx/scene/shape/Polygon.java --- a/javafx-ui-common/src/javafx/scene/shape/Polygon.java +++ b/javafx-ui-common/src/javafx/scene/shape/Polygon.java @@ -54,8 +54,6 @@ 20.0, 10.0, 10.0, 20.0 }); - * - * @profile common */ public class Polygon extends Shape { @@ -82,7 +80,6 @@ /** * Defines the coordinates of the polygon vertices. * - * @profile common * @defaultvalue empty */ private final ObservableList points = new TrackableObservableList() { diff --git a/javafx-ui-common/src/javafx/scene/shape/Polyline.java b/javafx-ui-common/src/javafx/scene/shape/Polyline.java --- a/javafx-ui-common/src/javafx/scene/shape/Polyline.java +++ b/javafx-ui-common/src/javafx/scene/shape/Polyline.java @@ -62,8 +62,6 @@ 20.0, 10.0, 10.0, 20.0 }); - * - * @profile common */ public class Polyline extends Shape { @@ -98,7 +96,6 @@ /** * Defines the coordinates of the polyline segments. * - * @profile common * @defaultvalue empty */ private final ObservableList points = new TrackableObservableList() { diff --git a/javafx-ui-common/src/javafx/scene/shape/QuadCurve.java b/javafx-ui-common/src/javafx/scene/shape/QuadCurve.java --- a/javafx-ui-common/src/javafx/scene/shape/QuadCurve.java +++ b/javafx-ui-common/src/javafx/scene/shape/QuadCurve.java @@ -56,8 +56,6 @@ quad.setControlX(25.0f); quad.setControlY(0.0f); - * - * @profile common */ public class QuadCurve extends Shape { @@ -91,7 +89,6 @@ * Defines the X coordinate of the start point * of the quadratic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty startX; @@ -134,7 +131,6 @@ * Defines the Y coordinate of the start point * of the quadratic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty startY; @@ -177,7 +173,6 @@ * Defines the X coordinate of the control point * of the quadratic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlX; @@ -220,7 +215,6 @@ * Defines the Y coordinate of the control point * of the quadratic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlY; @@ -262,7 +256,6 @@ * Defines the X coordinate of the end point * of the quadratic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty endX; @@ -304,7 +297,6 @@ * Defines the Y coordinate of the end point * of the quadratic curve segment. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty endY; diff --git a/javafx-ui-common/src/javafx/scene/shape/QuadCurveTo.java b/javafx-ui-common/src/javafx/scene/shape/QuadCurveTo.java --- a/javafx-ui-common/src/javafx/scene/shape/QuadCurveTo.java +++ b/javafx-ui-common/src/javafx/scene/shape/QuadCurveTo.java @@ -66,8 +66,6 @@ path.getElements().add(moveTo); path.getElements().add(cubicTo); - * - * @profile common */ public class QuadCurveTo extends PathElement { @@ -94,7 +92,6 @@ /** * Defines the X coordinate of the quadratic control point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlX; @@ -134,7 +131,6 @@ /** * Defines the Y coordinate of the quadratic control point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty controlY; @@ -174,7 +170,6 @@ /** * Defines the X coordinate of the final end point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty x; @@ -214,7 +209,6 @@ /** * Defines the Y coordinate of the final end point. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty y; diff --git a/javafx-ui-common/src/javafx/scene/shape/Rectangle.java b/javafx-ui-common/src/javafx/scene/shape/Rectangle.java --- a/javafx-ui-common/src/javafx/scene/shape/Rectangle.java +++ b/javafx-ui-common/src/javafx/scene/shape/Rectangle.java @@ -70,8 +70,6 @@ r.setArcWidth(20); r.setArcHeight(20); - * - * @profile common */ public class Rectangle extends Shape { @@ -126,7 +124,6 @@ /** * Defines the X coordinate of the upper-left corner of the rectangle. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty x; @@ -167,7 +164,6 @@ /** * Defines the Y coordinate of the upper-left corner of the rectangle. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty y; @@ -208,7 +204,6 @@ /** * Defines the width of the rectangle. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty width; @@ -249,7 +244,6 @@ /** * Defines the height of the rectangle. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty height; @@ -291,7 +285,6 @@ * Defines the horizontal diameter of the arc * at the four corners of the rectangle. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty arcWidth; @@ -337,7 +330,6 @@ * Defines the vertical diameter of the arc * at the four corners of the rectangle. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty arcHeight; diff --git a/javafx-ui-common/src/javafx/scene/shape/SVGPath.java b/javafx-ui-common/src/javafx/scene/shape/SVGPath.java --- a/javafx-ui-common/src/javafx/scene/shape/SVGPath.java +++ b/javafx-ui-common/src/javafx/scene/shape/SVGPath.java @@ -51,8 +51,6 @@ SVGPath svg = new SVGPath(); svg.setContent("M40,60 C42,48 44,30 25,32"); - * - * @profile common */ public class SVGPath extends Shape { /** @@ -61,7 +59,6 @@ * {@code FillRile.EVEN_ODD} or {@code FillRule.NON_ZERO}. * The default value is {@code FillRule.NON_ZERO}. * - * @profile common * @defaultvalue FillRule.NON_ZERO */ private ObjectProperty fillRule; @@ -104,7 +101,6 @@ * Defines the SVG Path encoded string as specified at: * http://www.w3.org/TR/SVG/paths.html. * - * @profile common * @defaultvalue empty string */ private StringProperty content; diff --git a/javafx-ui-common/src/javafx/scene/shape/Shape.java b/javafx-ui-common/src/javafx/scene/shape/Shape.java --- a/javafx-ui-common/src/javafx/scene/shape/Shape.java +++ b/javafx-ui-common/src/javafx/scene/shape/Shape.java @@ -112,8 +112,6 @@ * stroke styles - which will bias the default single unit stroke onto one * of the full pixel rows or columns just inside or outside the border of * the shape. - * - * @profile common */ public abstract class Shape extends Node { @@ -188,7 +186,6 @@ *

* * @see StrokeType - * @profile desktop * @defaultvalue CENTERED * @since JavaFX 1.3 */ @@ -209,7 +206,6 @@ * Defines a square pen line width. A value of 0.0 specifies a hairline * stroke. A value of less than 0.0 will be treated as 0.0. * - * @profile common * @defaultvalue 1.0 */ public final DoubleProperty strokeWidthProperty() { @@ -237,7 +233,6 @@ *

* * @see StrokeLineJoin - * @profile common * @defaultvalue MITER */ public final ObjectProperty strokeLineJoinProperty() { @@ -264,7 +259,6 @@ *

* * @see StrokeLineCap - * @profile common * @defaultvalue SQUARE */ public final ObjectProperty strokeLineCapProperty() { @@ -295,7 +289,6 @@ * *

* - * @profile common * @defaultvalue 10.0 */ public final DoubleProperty strokeMiterLimitProperty() { @@ -326,7 +319,6 @@ * *

* - * @profile common * @defaultvalue 0 */ public final DoubleProperty strokeDashOffsetProperty() { @@ -350,7 +342,6 @@ * *

* - * @profile common * @defaultvalue empty */ public final ObservableList getStrokeDashArray() { @@ -392,8 +383,6 @@ * The default value is {@code Color.BLACK} for all shapes except * Line, Polyline, and Path. The default value is {@code null} for * those shapes. - * - * @profile common */ private ObjectProperty fill; @@ -450,8 +439,6 @@ * The default value is {@code null} for all shapes except * Line, Polyline, and Path. The default value is {@code Color.BLACK} for * those shapes. - * - * @profile common */ private ObjectProperty stroke; @@ -504,7 +491,6 @@ * Defines whether antialiasing hints are used or not for this {@code Shape}. * If the value equals true the rendering hints are applied. * - * @profile common * @defaultvalue true */ private BooleanProperty smooth; diff --git a/javafx-ui-common/src/javafx/scene/shape/StrokeLineCap.java b/javafx-ui-common/src/javafx/scene/shape/StrokeLineCap.java --- a/javafx-ui-common/src/javafx/scene/shape/StrokeLineCap.java +++ b/javafx-ui-common/src/javafx/scene/shape/StrokeLineCap.java @@ -46,8 +46,6 @@ /** * Defines the end cap style of a {@code Shape}. - * - * @profile common */ public enum StrokeLineCap { @@ -59,8 +57,6 @@ *

* *

- * - * @profile common */ SQUARE, @@ -70,8 +66,6 @@ *

* *

- * - * @profile common */ BUTT, @@ -82,8 +76,6 @@ *

* *

- * - * @profile common */ ROUND } diff --git a/javafx-ui-common/src/javafx/scene/shape/StrokeLineJoin.java b/javafx-ui-common/src/javafx/scene/shape/StrokeLineJoin.java --- a/javafx-ui-common/src/javafx/scene/shape/StrokeLineJoin.java +++ b/javafx-ui-common/src/javafx/scene/shape/StrokeLineJoin.java @@ -46,8 +46,6 @@ /** * Defines the line join style of a {@code Shape}. - * - * @profile common */ public enum StrokeLineJoin { @@ -57,8 +55,6 @@ *

* *

- * - * @profile common */ MITER,//(BasicStroke.JOIN_MITER), @@ -69,8 +65,6 @@ *

* *

- * - * @profile common */ BEVEL,//(BasicStroke.JOIN_BEVEL), @@ -81,8 +75,6 @@ *

* *

- * - * @profile common */ ROUND//(BasicStroke.JOIN_ROUND); } diff --git a/javafx-ui-common/src/javafx/scene/shape/StrokeType.java b/javafx-ui-common/src/javafx/scene/shape/StrokeType.java --- a/javafx-ui-common/src/javafx/scene/shape/StrokeType.java +++ b/javafx-ui-common/src/javafx/scene/shape/StrokeType.java @@ -48,7 +48,6 @@ * Defines where to draw the stroke around the boundary of a Shape node. * * @see Shape - * @profile desktop * @since JavaFX 1.3 */ public enum StrokeType { @@ -64,8 +63,6 @@ *

* *

- * - * @profile desktop */ INSIDE, @@ -80,8 +77,6 @@ *

* *

- * - * @profile desktop */ OUTSIDE, @@ -96,8 +91,6 @@ *

* *

- * - * @profile desktop */ CENTERED } diff --git a/javafx-ui-common/src/javafx/scene/shape/VLineTo.java b/javafx-ui-common/src/javafx/scene/shape/VLineTo.java --- a/javafx-ui-common/src/javafx/scene/shape/VLineTo.java +++ b/javafx-ui-common/src/javafx/scene/shape/VLineTo.java @@ -49,8 +49,6 @@ path.getElements().add(new MoveTo(50.0f, 0.0f)); path.getElements().add(new VLineTo(50.0f)); - * - * @profile common */ public class VLineTo extends PathElement { @@ -71,7 +69,6 @@ /** * Defines the Y coordinate. * - * @profile common * @defaultvalue 0.0 */ private DoubleProperty y; diff --git a/javafx-ui-common/src/javafx/scene/text/Font.java b/javafx-ui-common/src/javafx/scene/text/Font.java --- a/javafx-ui-common/src/javafx/scene/text/Font.java +++ b/javafx-ui-common/src/javafx/scene/text/Font.java @@ -53,8 +53,6 @@ *

* For more information see {@link javafx.scene.Node} for more information * on the default coordinate system - * - * @profile common */ public final class Font { @@ -94,8 +92,6 @@ * application fonts or SDK fonts. This call has performance considerations * as looking up all of the fonts may be an expensive operation the * first time. - * - * @profile common */ public static List getFamilies() { return Toolkit.getToolkit().getFontLoader().getFamilies(); @@ -106,8 +102,6 @@ * including any application fonts and SDK fonts. * This call has performance considerations as * looking up all of the fonts may be an expensive operation the first time. - * - * @profile common */ public static List getFontNames() { return Toolkit.getToolkit().getFontLoader().getFontNames(); @@ -119,8 +113,6 @@ * and SDK fonts. * This call has performance considerations as looking up all of the * fonts may be an expensive operation the first time. - * - * @profile common */ public static List getFontNames(String family) { return Toolkit.getToolkit().getFontLoader().getFontNames(family); @@ -141,8 +133,6 @@ * @param size The point size of the font. This can be a fractional value, * but must not be negative. If the size is < 0 the default size will be * used. - * - * @profile common */ public static Font font(String family, FontWeight weight, FontPosture posture, double size) { @@ -165,8 +155,6 @@ * @param size The point size of the font. This can be a fractional value, * but must not be negative. If the size is < 0 the default size will be * used. - * - * @profile common */ public static Font font(String family, FontWeight weight, double size) { return font(family, weight, null, size); @@ -183,8 +171,6 @@ * @param size The point size of the font. This can be a fractional value, * but must not be negative. If the size is < 0 the default size will be * used. - * - * @profile common */ public static Font font(String family, FontPosture posture, double size) { return font(family, null, posture, size); @@ -200,8 +186,6 @@ * @param size The point size of the font. This can be a fractional value, * but must not be negative. If the size is < 0 the default size will be * used. - * - * @profile common */ public static Font font(String family, double size) { return font(family, null, null, size); @@ -231,7 +215,6 @@ * then you can use one of the {@link #font} factory methods defined in * this class. * - * @profile common * @defaultvalue empty string */ public final String getName() { return name; } @@ -240,8 +223,6 @@ /** * Returns the family of this font. * @return The family of this font. - * - * @profile common */ public final String getFamily() { return family; } private String family; @@ -249,8 +230,6 @@ /** * The font specified string describing the style within the font family. * @return The style name of this font. - * - * @profile common */ public final String getStyle() { return style; } private String style; @@ -260,7 +239,6 @@ * {@code 11.5}. If the specified value is < 0 the default size will be * used. * - * @profile common * @defaultvalue 12 */ public final double getSize() { return size; } @@ -438,8 +416,6 @@ * Converts this {@code Font} object to a {@code String} representation. * The String representation is for informational use only and will change. * Do not use this string representation for any programmatic purpose. - * - * @profile common */ @Override public String toString() { StringBuilder builder = new StringBuilder("Font[name="); diff --git a/javafx-ui-common/src/javafx/scene/text/FontPosture.java b/javafx-ui-common/src/javafx/scene/text/FontPosture.java --- a/javafx-ui-common/src/javafx/scene/text/FontPosture.java +++ b/javafx-ui-common/src/javafx/scene/text/FontPosture.java @@ -46,18 +46,14 @@ /** * Specifies whether the font is italicized - * - * @profile common */ public enum FontPosture { /** * represents regular. - * @profile common */ REGULAR("", "regular"), /** * represents italic. - * @profile common */ ITALIC("italic"); @@ -71,7 +67,6 @@ * Returns {@code FontPosture} by its name. * * @param name name of the {@code FontPosture} - * @profile common */ public static FontPosture findByName(String name) { if (name == null) return null; diff --git a/javafx-ui-common/src/javafx/scene/text/FontWeight.java b/javafx-ui-common/src/javafx/scene/text/FontWeight.java --- a/javafx-ui-common/src/javafx/scene/text/FontWeight.java +++ b/javafx-ui-common/src/javafx/scene/text/FontWeight.java @@ -51,62 +51,51 @@ * * OpenType font specification. * The CSS 3 specification references the same as a sequence of values. - * - * @profile common */ public enum FontWeight { /** * represents Thin font weight (100). - * @profile common */ THIN(100, "Thin"), /** * represents 'Extra Light' font weight (200). - * @profile common */ EXTRA_LIGHT(200, "Extra Light", "Ultra Light"), /** * represents Light font weight (300). - * @profile common */ LIGHT(300, "Light"), /** * represents Normal font weight (400). - * @profile common */ NORMAL(400, "Normal", "Regular"), /** * represents Medium font weight (500). - * @profile common */ MEDIUM(500, "Medium"), /** * represents 'Demi Bold' font weight (600). - * @profile common */ SEMI_BOLD(600, "Semi Bold", "Demi Bold"), /** * represents Bold font weight (700). - * @profile common */ BOLD(700, "Bold"), /** * represents 'Extra Bold' font weight (800). - * @profile common */ EXTRA_BOLD(800, "Extra Bold", "Ultra Bold"), /** * represents Black font weight (900). - * @profile common */ BLACK(900, "Black", "Heavy"); @@ -130,7 +119,6 @@ * Returns {@code FontWeight} by its name. * * @param name name of the {@code FontWeight} - * @profile common */ public static FontWeight findByName(String name) { if (name == null) return null; diff --git a/javafx-ui-common/src/javafx/scene/text/Text.java b/javafx-ui-common/src/javafx/scene/text/Text.java --- a/javafx-ui-common/src/javafx/scene/text/Text.java +++ b/javafx-ui-common/src/javafx/scene/text/Text.java @@ -102,7 +102,6 @@ text.setTextAlignment(TextAlignment.JUSTIFY) text.setText("The quick brown fox jumps over the lazy dog"); - * @profile common */ @DefaultProperty("text") public final class Text extends Shape { @@ -156,7 +155,6 @@ * Defines text string that is to be displayed. * * @defaultvalue empty string - * @profile common */ private StringProperty text; @@ -215,7 +213,6 @@ * Defines the X coordinate of text origin. * * @defaultvalue 0 - * @profile common */ private DoubleProperty x; @@ -256,7 +253,6 @@ * Defines the Y coordinate of text origin. * * @defaultvalue 0 - * @profile common */ private DoubleProperty y; @@ -297,7 +293,6 @@ * Defines the font of text. * * @defaultvalue Font{} - * @profile common */ private ObjectProperty font; @@ -356,7 +351,6 @@ * {@code VPos.BOTTOM} defines the origin of the bottom row. * * @defaultvalue VPos.BASELINE - * @profile common */ private ObjectProperty textOrigin; @@ -404,7 +398,6 @@ * the visual bounds. See {@code TextBoundsType} for more information. * * @defaultvalue TextBoundsType.LOGICAL - * @profile common * @since JavaFX 1.3 */ private ObjectProperty boundsType; @@ -447,7 +440,6 @@ * If the value is {@code > 0} text will be line wrapped as needed * to satisfy this constraint. * - * @profile common * @defaultvalue 0 */ private DoubleProperty wrappingWidth; @@ -487,7 +479,6 @@ /** * Defines if each line of text should have a line below it. * - * @profile common * @defaultvalue false */ private BooleanProperty underline; @@ -532,7 +523,6 @@ /** * Defines if each line of text should have a line through it. * - * @profile common * @defaultvalue false */ private BooleanProperty strikethrough; @@ -584,7 +574,6 @@ * node is determined by the width of the text, the alignment setting * has no effect. * - * @profile common * @defaultvalue TextAlignment.LEFT */ private ObjectProperty textAlignment; @@ -630,7 +619,6 @@ * The 'alphabetic' (or roman) baseline offset from the Text node's layoutBounds.minY location. * The value typically corresponds to the max ascent of the font. * - * @profile common * @since JavaFX 1.3 */ //TODO(aim): not sure this needs to be a field vs. just a getter function that lazily computes it @@ -664,7 +652,6 @@ * Note: LCD mode doesn't apply in numerous cases, such as various * compositing modes, where effects are applied and very large glyphs. * - * @profile common * @defaultvalue FontSmoothingType.GRAY */ private ObjectProperty fontSmoothingType; @@ -723,7 +710,6 @@ * and between characters to be picked. * * @defaultvalue true - * @profile common * @since JavaFX 1.3 */ //@GenerateProperty private boolean pickOnBounds = true; diff --git a/javafx-ui-common/src/javafx/scene/text/TextAlignment.java b/javafx-ui-common/src/javafx/scene/text/TextAlignment.java --- a/javafx-ui-common/src/javafx/scene/text/TextAlignment.java +++ b/javafx-ui-common/src/javafx/scene/text/TextAlignment.java @@ -46,36 +46,26 @@ /** * The {@code TextAlignment} enum represents the horizontal text alignment. - * - * @profile common */ public enum TextAlignment { /** * Represents text alignment to the left (left-justified, ragged right). - * - * @profile common */ LEFT, /** * Represents centered text alignment (ragged left and right). - * - * @profile common */ CENTER, /** * Represents text alignment to the right (right-justified, ragged left). - * - * @profile common */ RIGHT, /** * Represents justified text alignment. - * - * @profile common */ JUSTIFY } diff --git a/javafx-ui-common/src/javafx/scene/text/TextBoundsType.java b/javafx-ui-common/src/javafx/scene/text/TextBoundsType.java --- a/javafx-ui-common/src/javafx/scene/text/TextBoundsType.java +++ b/javafx-ui-common/src/javafx/scene/text/TextBoundsType.java @@ -63,7 +63,6 @@ * spaces are part of the logical advance width of the text. *

* - * @profile common * @since JavaFX 1.3 */ public enum TextBoundsType { @@ -72,8 +71,6 @@ * Use logical bounds as the basis for calculating the bounds. *

* Note: This is usually the fastest option. - * - * @profile common */ LOGICAL, @@ -81,8 +78,6 @@ * Use visual bounds as the basis for calculating the bounds. *

* Note: This is likely to be slower than using logical bounds. - * - * @profile common */ VISUAL diff --git a/javafx-ui-common/src/javafx/scene/transform/Shear.java b/javafx-ui-common/src/javafx/scene/transform/Shear.java --- a/javafx-ui-common/src/javafx/scene/transform/Shear.java +++ b/javafx-ui-common/src/javafx/scene/transform/Shear.java @@ -51,8 +51,6 @@ * text.getTransforms().add(new Shear(-0.35, 0)); * *

- * - * @profile common */ public class Shear extends Transform { @@ -96,7 +94,6 @@ * are in the range -1 to 1, exclusive. * * @defaultvalue 0.0 - * @profile common */ private DoubleProperty x; @@ -138,7 +135,6 @@ * are in the range -1 to 1, exclusive. * * @defaultvalue 0.0 - * @profile common */ private DoubleProperty y; diff --git a/javafx-ui-common/src/javafx/scene/transform/Transform.java b/javafx-ui-common/src/javafx/scene/transform/Transform.java --- a/javafx-ui-common/src/javafx/scene/transform/Transform.java +++ b/javafx-ui-common/src/javafx/scene/transform/Transform.java @@ -89,7 +89,6 @@ * @param tz the Z coordinate translation element of the 3x4 matrix * @return a new {@code Affine} object derived from specified parameters * - * @profile common conditional scene3d * @since JavaFX 1.3 */ public static Affine affine( @@ -189,8 +188,6 @@ *
      *    new Shear(x, y);
      * 
- * - * @profile common */ public static Shear shear(double x, double y) { final Shear shear = new Shear(); @@ -206,8 +203,6 @@ *
      *    new Shear(x, y, pivotX, pivotY);
      * 
- * - * @profile common */ public static Shear shear(double x, double y, double pivotX, double pivotY) { final Shear shear = new Shear(); diff --git a/javafx-ui-common/src/javafx/stage/Modality.java b/javafx-ui-common/src/javafx/stage/Modality.java --- a/javafx-ui-common/src/javafx/stage/Modality.java +++ b/javafx-ui-common/src/javafx/stage/Modality.java @@ -27,8 +27,6 @@ /** * This enum defines the possible modality types for a {@code Stage}. - * - * @profile common */ public enum Modality { diff --git a/javafx-ui-common/src/javafx/stage/Popup.java b/javafx-ui-common/src/javafx/stage/Popup.java --- a/javafx-ui-common/src/javafx/stage/Popup.java +++ b/javafx-ui-common/src/javafx/stage/Popup.java @@ -38,7 +38,6 @@ * another popup than the first popup is hidden. Once the second popup is hidden * the first popup is again displayed and gains focus. * - * @profile common * @since JavaFX 1.3 */ public class Popup extends PopupWindow { diff --git a/javafx-ui-common/src/javafx/stage/Screen.java b/javafx-ui-common/src/javafx/stage/Screen.java --- a/javafx-ui-common/src/javafx/stage/Screen.java +++ b/javafx-ui-common/src/javafx/stage/Screen.java @@ -74,8 +74,6 @@ * stage.show(); * *

- * - * @profile common */ public class Screen { @@ -198,7 +196,6 @@ * @param height the height of the specified rectangular area * @return a ObservableList of {@code Screens} for which {@code Screen.bounds} * intersects the provided rectangle - * @profile common */ public static ObservableList getScreensForRectangle( double x, double y, double width, double height) @@ -216,7 +213,6 @@ /** * Returns a ObservableList of {@code Screens} that intersects the provided rectangle. * - * @profile common * @param r The specified {@code Rectangle2D} * @return a ObservableList of {@code Screens} for which {@code Screen.bounds} * intersects the provided rectangle diff --git a/javafx-ui-common/src/javafx/stage/Stage.java b/javafx-ui-common/src/javafx/stage/Stage.java --- a/javafx-ui-common/src/javafx/stage/Stage.java +++ b/javafx-ui-common/src/javafx/stage/Stage.java @@ -420,7 +420,6 @@ * * * @defaultvalue false - * @profile common */ private ReadOnlyBooleanWrapper fullScreen; @@ -534,7 +533,6 @@ /** * Defines whether the {@code Stage} is iconified or not. * - * @profile common * @defaultvalue false */ private ReadOnlyBooleanWrapper iconified; @@ -582,7 +580,6 @@ * a hint which allows the implementation to optionally make the Stage * resizable by the user. * - * @profile common * @defaultvalue true */ private BooleanProperty resizable; @@ -623,7 +620,6 @@ /** * Defines the minimum width of this {@code Stage}. * - * @profile common * @defaultvalue 0 */ private DoubleProperty minWidth; @@ -668,7 +664,6 @@ /** * Defines the minimum height of this {@code Stage}. * - * @profile common * @defaultvalue 0 */ private DoubleProperty minHeight; @@ -714,7 +709,6 @@ /** * Defines the maximum width of this {@code Stage}. * - * @profile common * @defaultvalue Double.MAX_VALUE */ private DoubleProperty maxWidth; @@ -759,7 +753,6 @@ /** * Defines the maximum height of this {@code Stage}. * - * @profile common * @defaultvalue Double.MAX_VALUE */ private DoubleProperty maxHeight; @@ -867,8 +860,6 @@ /** * Bring the {@code Window} to the foreground. If the {@code Window} is * already in the foreground there is no visible difference. - * - * @profile common */ public void toFront() { if (impl_peer != null) { @@ -881,8 +872,6 @@ * already in the background there is no visible difference. This action * places this {@code Window} at the bottom of the stacking order on * platforms that support stacking. - * - * @profile common */ public void toBack() { if (impl_peer != null) { diff --git a/javafx-ui-common/src/javafx/stage/StageStyle.java b/javafx-ui-common/src/javafx/stage/StageStyle.java --- a/javafx-ui-common/src/javafx/stage/StageStyle.java +++ b/javafx-ui-common/src/javafx/stage/StageStyle.java @@ -27,37 +27,27 @@ /** * This enum defines the possible styles for a {@code Stage}. - * - * @profile common */ public enum StageStyle { /** * Defines a normal {@code Stage} style with a solid white background and platform decorations. - * - * @profile common */ DECORATED, /** * Defines a {@code Stage} style with a solid white background and no decorations. - * - * @profile common */ UNDECORATED, /** * Defines a {@code Stage} style with a transparent background and no decorations. - * - * @profile common */ TRANSPARENT, /** * Defines a {@code Stage} style with a solid white background and minimal * platform decorations used for a utility window. - * - * @profile common */ UTILITY