public interface RController
| Modifier and Type | Method and Description |
|---|---|
<T extends javafx.scene.Node> |
css(Class<T> type,
String selector)
Query for all
Node nodes using a CSS-Selector using
Node.lookupAll(String) |
<T extends javafx.scene.Node> |
css(String selector)
Query for all
Node nodes using a CSS-Selector using
Node.lookupAll(String) |
<T extends javafx.scene.Node> |
cssFirst(Class<T> type,
String selector)
Query for the first
Node using a CSS-Selector using
Node.lookupAll(String) |
<T extends javafx.scene.Node> |
cssFirst(String selector)
Query for the first
Node using a CSS-Selector using
Node.lookupAll(String) |
RRobot |
eventGenerator() |
RController |
run(Consumer<RController> c)
Run the provided code
|
<R> R |
run(Function<RController,R> f)
Run the provided code
|
RController |
run(Operation... r)
Run the provided operations
|
RController |
run(Runnable r)
Run the provided code
|
RController |
waitForRender()
Wait for the UI to render
|
<T extends javafx.scene.Node> Optional<RNode<T>> cssFirst(String selector)
Node using a CSS-Selector using
Node.lookupAll(String)selector - the selector<T extends javafx.scene.Node> Optional<RNode<T>> cssFirst(Class<T> type, String selector)
Node using a CSS-Selector using
Node.lookupAll(String)type - the Node typeselector - the selector<T extends javafx.scene.Node> Stream<RNode<T>> css(String selector)
Node nodes using a CSS-Selector using
Node.lookupAll(String)selector - the selector<T extends javafx.scene.Node> Stream<RNode<T>> css(Class<T> type, String selector)
Node nodes using a CSS-Selector using
Node.lookupAll(String)type - the Node typeselector - the selectorRController waitForRender()
RController run(Runnable r)
r - the runnableRController run(Consumer<RController> c)
c - the consumer<R> R run(Function<RController,R> f)
f - the functionRController run(Operation... r)
r - operations to runRRobot eventGenerator()
Copyright © 2017. All rights reserved.