Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
javafx.scene.layout |
Provides classes to support user interface layout.
|
javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
javafx.scene.text |
Provides the set of classes for fonts and renderable Text Node.
|
Modifier and Type | Field and Description |
---|---|
private Shape |
StrokeTransition.cachedShape |
private Shape |
FillTransition.cachedShape |
private static Shape |
PathTransition.DEFAULT_PATH |
private static Shape |
StrokeTransition.DEFAULT_SHAPE |
private static Shape |
FillTransition.DEFAULT_SHAPE |
private Shape |
PathTransitionBuilder.path |
private Shape |
StrokeTransitionBuilder.shape |
private Shape |
FillTransitionBuilder.shape |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Shape> |
PathTransition.path
The shape on which outline the node should be animated.
|
private ObjectProperty<Shape> |
StrokeTransition.shape
The target shape of this
StrokeTransition . |
private ObjectProperty<Shape> |
FillTransition.shape
The target shape of this
FillTransition . |
Modifier and Type | Method and Description |
---|---|
Shape |
PathTransition.getPath()
Gets the value of the property path.
|
Shape |
StrokeTransition.getShape()
Gets the value of the property shape.
|
Shape |
FillTransition.getShape()
Gets the value of the property shape.
|
private Shape |
StrokeTransition.getTargetShape() |
private Shape |
FillTransition.getTargetShape() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Shape> |
PathTransition.pathProperty()
The shape on which outline the node should be animated.
|
ObjectProperty<Shape> |
StrokeTransition.shapeProperty()
The target shape of this
StrokeTransition . |
ObjectProperty<Shape> |
FillTransition.shapeProperty()
The target shape of this
FillTransition . |
Modifier and Type | Method and Description |
---|---|
PathTransitionBuilder |
PathTransitionBuilder.path(Shape x)
Set the value of the
path property for the instance constructed by this builder. |
void |
PathTransition.setPath(Shape value)
Sets the value of the property path.
|
void |
StrokeTransition.setShape(Shape value)
Sets the value of the property shape.
|
void |
FillTransition.setShape(Shape value)
Sets the value of the property shape.
|
StrokeTransitionBuilder |
StrokeTransitionBuilder.shape(Shape x)
Set the value of the
shape property for the instance constructed by this builder. |
FillTransitionBuilder |
FillTransitionBuilder.shape(Shape x)
Set the value of the
shape property for the instance constructed by this builder. |
Constructor and Description |
---|
FillTransition(Duration duration,
Shape shape)
The constructor of
FillTransition |
FillTransition(Duration duration,
Shape shape,
Color fromValue,
Color toValue)
The constructor of
FillTransition |
PathTransition(Duration duration,
Shape path)
The constructor of
PathTransition . |
PathTransition(Duration duration,
Shape path,
Node node)
The constructor of
PathTransition . |
StrokeTransition(Duration duration,
Shape shape)
The constructor of
StrokeTransition |
StrokeTransition(Duration duration,
Shape shape,
Color fromValue,
Color toValue)
The constructor of
StrokeTransition |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Shape> |
Region.shape
By default a region is a rectangle with rounded corners if specified in
the borders.
|
Modifier and Type | Method and Description |
---|---|
private Shape |
Region.getShape() |
Shape |
Region.impl_getShape()
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Modifier and Type | Method and Description |
---|---|
private ObjectProperty<Shape> |
Region.shapeProperty() |
Modifier and Type | Method and Description |
---|---|
void |
Region.impl_setShape(Shape value)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Modifier and Type | Class and Description |
---|---|
class |
Arc
The
Arc class represents a 2D arc object, defined by a center point,
start angle (in degrees), angular extent (length of the arc in degrees),
and an arc type (ArcType.OPEN , ArcType.CHORD ,
or ArcType.ROUND ). |
class |
Circle
The
Circle class creates a new circle
with the specified radius and center location measured in pixels
Example usage. |
class |
CubicCurve
The
CubiCurve class defines a cubic Bézier parametric curve segment
in (x,y) coordinate space. |
class |
Ellipse
The
Ellipse class creates a new ellipse
with the specified size and location in pixels |
class |
Line
This Line represents a line segment in
(x,y)
coordinate space. |
class |
Path
The
Path class represents a simple shape
and provides facilities required for basic construction
and management of a geometric path. |
class |
Polygon
Creates a polygon, defined by an array of x,y coordinates.
|
class |
Polyline
Creates a polyline, defined by the array of the segment points.
|
class |
QuadCurve
The
Quadcurve class defines a quadratic Bézier parametric curve
segment in (x,y) coordinate space. |
class |
Rectangle
The
Rectangle class defines a rectangle
with the specified size and location. |
class |
SVGPath
The
SVGPath class represents a simple shape that is constructed by
parsing SVG path data from a String. |
Modifier and Type | Field and Description |
---|---|
private static com.sun.javafx.css.StyleableProperty<Shape,Paint> |
Shape.StyleableProperties.FILL |
private static com.sun.javafx.css.StyleableProperty<Shape,java.lang.Boolean> |
Shape.StyleableProperties.SMOOTH |
private static com.sun.javafx.css.StyleableProperty<Shape,Paint> |
Shape.StyleableProperties.STROKE |
private static com.sun.javafx.css.StyleableProperty<Shape,java.lang.Double[]> |
Shape.StyleableProperties.STROKE_DASH_ARRAY |
private static com.sun.javafx.css.StyleableProperty<Shape,java.lang.Number> |
Shape.StyleableProperties.STROKE_DASH_OFFSET |
private static com.sun.javafx.css.StyleableProperty<Shape,StrokeLineCap> |
Shape.StyleableProperties.STROKE_LINE_CAP |
private static com.sun.javafx.css.StyleableProperty<Shape,StrokeLineJoin> |
Shape.StyleableProperties.STROKE_LINE_JOIN |
private static com.sun.javafx.css.StyleableProperty<Shape,java.lang.Number> |
Shape.StyleableProperties.STROKE_MITER_LIMIT |
private static com.sun.javafx.css.StyleableProperty<Shape,StrokeType> |
Shape.StyleableProperties.STROKE_TYPE |
Modifier and Type | Method and Description |
---|---|
static Shape |
Shape.intersect(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as an intersection of the
specified input shapes. |
static Shape |
Shape.subtract(Shape shape1,
Shape shape2)
Returns a new
Shape which is created by subtracting the specified
second shape from the first shape. |
static Shape |
Shape.union(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as a union of the specified
input shapes. |
Modifier and Type | Method and Description |
---|---|
void |
ShapeBuilder.applyTo(Shape x) |
static Shape |
Shape.intersect(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as an intersection of the
specified input shapes. |
static Shape |
Shape.subtract(Shape shape1,
Shape shape2)
Returns a new
Shape which is created by subtracting the specified
second shape from the first shape. |
static Shape |
Shape.union(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as a union of the specified
input shapes. |
Modifier and Type | Class and Description |
---|---|
class |
Text
The
Text class defines a node that displays a text. |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to