Package | Description |
---|---|
javafx.embed.swing |
Provides the set of classes to use JavaFX inside Swing applications.
|
javafx.embed.swt |
Provides the set of classes to use JavaFX inside SWT applications.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Method and Description |
---|---|
Scene |
JFXPanel.getScene()
Returns the JavaFX scene attached to this
JFXPanel . |
Modifier and Type | Method and Description |
---|---|
void |
JFXPanel.setScene(Scene newScene)
Attaches a
Scene object to display in this JFXPanel . |
Modifier and Type | Method and Description |
---|---|
Scene |
FXCanvas.getScene()
Returns the JavaFX scene attached to this
FXCanvas . |
Modifier and Type | Method and Description |
---|---|
void |
FXCanvas.setScene(Scene newScene)
Attaches a
Scene object to display in this FXCanvas . |
Modifier and Type | Method and Description |
---|---|
Scene |
Node.getScene()
Gets the value of the property scene.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Scene> |
Node.sceneProperty()
The
Scene that this Node is part of. |
Modifier and Type | Method and Description |
---|---|
Scene |
Window.getScene()
Gets the value of the property scene.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Scene> |
Window.sceneProperty()
The
Scene to be rendered on this Stage . |
Modifier and Type | Method and Description |
---|---|
protected void |
PopupWindow.setScene(Scene scene)
Note to subclasses: the scene used by PopupWindow is very specifically
managed by PopupWindow.
|
void |
Stage.setScene(Scene value)
Specify the scene to be used on this stage.
|
protected void |
Window.setScene(Scene value)
Sets the value of the property scene.
|
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.