Package | Description |
---|---|
com.sun.javafx.fxml.expression |
Modifier and Type | Field and Description |
---|---|
private KeyPath |
VariableExpression.keyPath |
Modifier and Type | Method and Description |
---|---|
KeyPath |
VariableExpression.getKeyPath()
Returns the path to the variable associated with this expression.
|
protected static KeyPath |
KeyPath.parse(java.io.PushbackReader reader)
Parses character content from a reader into a key path.
|
static KeyPath |
KeyPath.parse(java.lang.String value)
Parses a string value into a key path.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<KeyPath> |
Expression.getArguments()
Returns a list of arguments to this expression.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
Expression.get(java.lang.Object namespace,
KeyPath keyPath)
Returns the value at a given path within a namespace.
|
static boolean |
Expression.isDefined(java.lang.Object namespace,
KeyPath keyPath)
Tests the existence of a path within a namespace.
|
static void |
Expression.set(java.lang.Object namespace,
KeyPath keyPath,
java.lang.Object value)
Sets the value at a given path within a namespace.
|
Modifier and Type | Method and Description |
---|---|
protected void |
VariableExpression.getArguments(java.util.List<KeyPath> arguments) |
protected void |
BinaryExpression.getArguments(java.util.List<KeyPath> arguments) |
protected void |
LiteralExpression.getArguments(java.util.List<KeyPath> arguments) |
protected void |
UnaryExpression.getArguments(java.util.List<KeyPath> arguments) |
protected abstract void |
Expression.getArguments(java.util.List<KeyPath> arguments)
Populates a list of arguments to this expression.
|
Constructor and Description |
---|
VariableExpression(KeyPath keyPath) |