Uses of Class
io.github.somesourcecode.someguiapi.scene.Node
Packages that use Node
Package
Description
-
Uses of Node in io.github.somesourcecode.someguiapi.scene
Subclasses of Node in io.github.somesourcecode.someguiapi.sceneModifier and TypeClassDescriptionclassRepresents an item in a GUI.classThe base class for all nodes that can have children.Methods in io.github.somesourcecode.someguiapi.scene that return NodeModifier and TypeMethodDescriptionFinds thisNodeor the first sub-node by the given selector.Looks for any node in the scene that matches the given selector.GuiItem.nodeAt(int x, int y) Returns the node at the given coordinates.abstract NodeNode.nodeAt(int x, int y) Returns the node at the given coordinates.Parent.nodeAt(int x, int y) Methods in io.github.somesourcecode.someguiapi.scene that return types with arguments of type NodeModifier and TypeMethodDescriptionprotected ObservableList<Node>Parent.getChildren()Returns the list of children of this parent.Finds all nodes that match the given selector.Used by Node and Parent to traverse the scene graph to find all nodes that match the given selector.Used by Node and Parent to traverse the scene graph to find all nodes that match the given selector.Looks for all nodes in the scene that match the given selector.Methods in io.github.somesourcecode.someguiapi.scene with parameters of type NodeModifier and TypeMethodDescriptionvoidstatic voidvoidstatic voidMethod parameters in io.github.somesourcecode.someguiapi.scene with type arguments of type NodeModifier and TypeMethodDescriptionUsed by Node and Parent to traverse the scene graph to find all nodes that match the given selector.Used by Node and Parent to traverse the scene graph to find all nodes that match the given selector. -
Uses of Node in io.github.somesourcecode.someguiapi.scene.layout
Subclasses of Node in io.github.somesourcecode.someguiapi.scene.layoutModifier and TypeClassDescriptionclassA layout pane that arranges its children in a flow, wrapping at the pane's bounds.classA layout pane that arranges its children in a horizontal row.classPane does not modify the layout of its children in any way.classThe Base class for parent nodes whose size can be freely set.classA layout pane that arranges its children in a vertical column.Methods in io.github.somesourcecode.someguiapi.scene.layout that return types with arguments of type NodeConstructors in io.github.somesourcecode.someguiapi.scene.layout with parameters of type NodeModifierConstructorDescriptionConstructs a new FlowPane with the given horizontal and vertical gaps and children.Constructs a new FlowPane with the given children.FlowPane(Orientation orientation, int hGap, int vGap, Node... children) Constructs a new FlowPane with the given orientation, horizontal and vertical gaps, and children.FlowPane(Orientation orientation, Node... children) Constructs a new FlowPane with the given orientation and children.Constructs a new HBox with the given spacing and children.Constructs a new HBox with the given children.Constructs a new pane with the given children.Constructs a new VBox with the given spacing and children.Constructs a new VBox with the given children.