Package | Description |
---|---|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
Modifier and Type | Class and Description |
---|---|
class |
Group
A
Group node contains an ObservableList of children that
are rendered in order whenever this node is rendered. |
Modifier and Type | Field and Description |
---|---|
(package private) Parent |
Scene.oldRoot |
private Parent |
SubSceneBuilder.root |
private Parent |
SceneBuilder.root |
Modifier and Type | Field and Description |
---|---|
private java.util.Set<Parent> |
Scene.dirtyLayoutRoots |
private java.util.Set<Parent> |
Scene.dirtyLayoutRootsA
List of dirty layout roots.
|
private java.util.Set<Parent> |
Scene.dirtyLayoutRootsB |
private javafx.beans.property.ReadOnlyObjectWrapper<Parent> |
Node.parent
The parent of this
Node . |
private javafx.beans.property.ObjectProperty<Parent> |
SubScene.root
Defines the root
Node of the SubScene scene graph. |
private javafx.beans.property.ObjectProperty<Parent> |
Scene.root
Defines the root
Node of the scene graph. |
Modifier and Type | Method and Description |
---|---|
Parent |
Node.getParent()
Gets the value of the property parent.
|
Parent |
SubScene.getRoot()
Gets the value of the property root.
|
Parent |
Scene.getRoot()
Gets the value of the property root.
|
Modifier and Type | Method and Description |
---|---|
javafx.beans.property.ReadOnlyObjectProperty<Parent> |
Node.parentProperty()
The parent of this
Node . |
private javafx.beans.property.ReadOnlyObjectWrapper<Parent> |
Node.parentPropertyImpl() |
javafx.beans.property.ObjectProperty<Parent> |
SubScene.rootProperty()
Defines the root
Node of the SubScene scene graph. |
javafx.beans.property.ObjectProperty<Parent> |
Scene.rootProperty()
Defines the root
Node of the scene graph. |
Modifier and Type | Method and Description |
---|---|
void |
Scene.addToDirtyLayoutList(Parent p)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
void |
ParentBuilder.applyTo(Parent x) |
(package private) void |
Scene.removeFromDirtyLayoutList(Parent p)
Remove the specified parent from this scene's dirty layout list.
|
B |
SubSceneBuilder.root(Parent x)
Set the value of the
root property for the instance constructed by this builder. |
B |
SceneBuilder.root(Parent x)
Set the value of the
root property for the instance constructed by this builder. |
(package private) void |
Node.setParent(Parent value) |
void |
SubScene.setRoot(Parent value)
Sets the value of the property root.
|
void |
Scene.setRoot(Parent value)
Sets the value of the property root.
|
Constructor and Description |
---|
Scene(Parent root)
Creates a Scene for a specific root Node.
|
Scene(Parent root,
double width,
double height)
Creates a Scene for a specific root Node with a specific size.
|
Scene(Parent root,
double width,
double height,
boolean depthBuffer)
Constructs a scene consisting of a root, with a dimension of width and
height, and specifies whether a depth buffer is created for this scene.
|
Scene(Parent root,
double width,
double height,
boolean depthBuffer,
boolean antiAliasing)
Constructs a scene consisting of a root, with a dimension of width and
height, specifies whether a depth buffer is created for this scene and
specifies whether scene anti-aliasing is requested.
|
Scene(Parent root,
double width,
double height,
javafx.scene.paint.Paint fill)
Creates a Scene for a specific root Node with a specific size and fill.
|
Scene(Parent root,
double width,
double height,
javafx.scene.paint.Paint fill,
boolean depthBuffer) |
Scene(Parent root,
javafx.scene.paint.Paint fill)
Creates a Scene for a specific root Node with a fill.
|
SubScene(Parent root,
double width,
double height)
Creates a SubScene for a specific root Node with a specific size.
|
SubScene(Parent root,
double width,
double height,
boolean depthBuffer,
boolean antiAliasing)
Constructs a SubScene consisting of a root, with a dimension of width and
height, specifies whether a depth buffer is created for this scene and
specifies whether scene anti-aliasing is requested.
|
Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.