Markup extensions

Attribute values in an FXML document are coerced to the type of their property with a range of built-in conversions. This process can be customized with markup extensions to support advanced scenarios that the FXML 2.0 language does not offer out of the box.

A markup extension can be used in attribute notation or element notation. When used in attribute notation, it has a special syntax where the name of the markup extension is surrounded by curly braces:

<Label text="{MyExtension}"/>

In order to have {MyExtension} be interpreted as a literal string instead, it must be prefixed with the following escape sequence: {}{MyExtension}

In element notation, the markup extension looks like a regular XML element:

<Label>
    <text>
        <MyExtension/>
    </text>
</Label>

Where markup extensions can be used

Markup extensions fall into two semantic categories, which determine the position in which a markup extension can be used:

  • Value supplier, which provides a value to a property, constructor argument, or method argument. This is the most general form of a markup extension, as it works in any position where a value is expected.

    <!-- fx:Observe in supplier position: provides an ObservableValue
         for the 'formatArguments' constructor argument -->
    <Label text="{DynamicResource message; formatArguments={fx:Observe amount}}"/>
    
  • Property consumer, which can only be applied directly to a Property or ReadOnlyProperty. A property consumer extension receives the target property and can manipulate it, such as by setting up a binding.

    <!-- fx:Observe in property-consumer position: binds the 'text' property to 'title' -->
    <Label text="{fx:Observe title}"/>
    
  • Some markup extensions support both roles and are valid in both positions.

The expression-related intrinsic markup extensions support these roles as follows:

Intrinsic markup extension Property consumer Supplier
fx:Evaluate yes yes
fx:Observe yes yes
fx:Synchronize yes no

User-defined markup extensions

User-defined markup extensions must implement one or both types of the following interfaces in the markup runtime library:

Property consumer extensions Supplier extensions
MarkupExtension.PropertyConsumer<T> MarkupExtension.Supplier<T>
MarkupExtension.ReadOnlyPropertyConsumer<T> MarkupExtension.BooleanSupplier
  MarkupExtension.IntSupplier
  MarkupExtension.LongSupplier
  MarkupExtension.FloatSupplier
  MarkupExtension.DoubleSupplier

Prefix shorthand in attribute notation

Markup extensions that use attribute notation can also be written with a single-character prefix. The $ and # prefixes are intrinsic to the FXML 2.0 language and expand to expression extensions. The % and @ prefixes expand to StaticResource and ClassPathResource:

<?import javafx.scene.control.Label?>

<Label xmlns="http://javafx.com/javafx" xmlns:fx="http://jfxcore.org/fxml/2.0"
       text="%greeting"
       graphic="@icons/app.png"/>

The % and @ prefixes are implicitly defined to expand to StaticResource and ClassPathResource, which are provided by the markup runtime library. If the markup runtime library is not on the compile classpath, compilation will fail.

These examples are equivalent to the following long form:

<?import javafx.scene.control.Label?>

<Label xmlns="http://javafx.com/javafx" xmlns:fx="http://jfxcore.org/fxml/2.0"
       text="{StaticResource greeting}"
       graphic="{ClassPathResource icons/app.png}"/>

If the markup extension has named arguments, they can also be specified in the prefix form:

<?import javafx.scene.control.Label?>

<Label xmlns="http://javafx.com/javafx" xmlns:fx="http://jfxcore.org/fxml/2.0"
       text="%greeting; formatArguments=Jane, Doe, 1234.5"
       graphic="@icons/app.png"/>

The prefix form has the same semantics as the corresponding markup extension. In this example, %... follows the rules documented for StaticResource, and @... follows the rules documented for ClassPathResource.

Generic type arguments are not allowed in prefix form, so %greeting is valid, but %<String>greeting is not. If type arguments are required, use the regular markup extension syntax instead; for example {StaticResource<String> greeting}.

Prefix declarations

Additional prefixes can be declared explicitly with a <?prefix?> processing instruction before the root element. Explicit declarations can also override the built-in defaults for % and @:

<?import javafx.scene.control.Label?>
<?import org.example.MyStaticResource?>

<?prefix % = MyStaticResource?>
<?prefix @ = org.example.MyClassPathResource?>

<Label xmlns="http://javafx.com/javafx" xmlns:fx="http://jfxcore.org/fxml/2.0"
       text="%greeting"
       graphic="@icons/app.png"/>

A declared prefix must satisfy the following rules:

  • It must be exactly one character.
  • It must not be a letter or digit.
  • It must not be one of the following reserved characters: { } ( ) [ ] < > , ; : = * / . # & " ' ? _

In practice, punctuation characters such as % and @ are good choices.

  • The % and @ prefixes are implicitly defined to expand to StaticResource and ClassPathResource. They can still be declared explicitly, in which case the explicit declaration overrides the default mapping for the current document.
  • The $ and # prefixes are reserved for expressions and cannot be redeclared.

Escaping declared prefixes

Prefix shorthand uses the same escape mechanism as other attribute-form markup extensions. To treat a prefixed value as a literal string, prefix it with {}:

<Label text="{}%greeting"/>

The value assigned to text in this example is the literal string %greeting, and not a markup extension.

Configuring a markup extension

Markup extensions can expose configuration parameters via constructor arguments annotated with @NamedArg, JavaFX properties, or getter/setter pairs:

public final class MyExtension implements MarkupExtension.PropertyConsumer<String> {

    private final int param1;
    private final IntegerProperty param2 = new SimpleIntegerProperty(this, "param2");
    private int param3;

    // Named constructor parameter
    public MyExtension(@NamedArg("param1") int param1) {
        this.param1 = param1;
    }

    // JavaFX property
    public IntegerProperty param2Property() { return param2; }

    // Getter/setter pair
    public int getParam3() { return param3; }
    public void setParam3(int value) { param3 = value; }

    @Override
    public void accept(Property<String> property, MarkupContext context) throws Exception {
       // ...
    }
}

Implementing a markup extension

The following example implements a markup extension that converts the name of an application resource to a String, URL, or URI representation, depending on the target type:

FXML
<Image url="{ClassPathResource /path/to/image.jpg}"/>
Java code
@DefaultProperty("value")
public final class ClassPathResource implements MarkupExtension.Supplier<Object> {

    private final String value;

    public ClassPathResource(@NamedArg("value") String value) {
        this.value = Objects.requireNonNull(value, "value cannot be null").trim();
    }

    @Override
    @ReturnType({String.class, URI.class, URL.class})
    public Object get(MarkupContext context) throws Exception {
        URL url = value.startsWith("/") ?
            Thread.currentThread().getContextClassLoader().getResource(value.substring(1)) :
            context.getRoot().getClass().getResource(value);

        if (url == null) {
            throw new RuntimeException("Resource not found: " + value);
        }

        Class<?> targetType = context.getTargetType();

        if (targetType.isAssignableFrom(String.class)) {
            return url.toExternalForm();
        }

        if (targetType.isAssignableFrom(URI.class)) {
            return url.toURI();
        }

        return url;
    }
}

The markup extension in this example uses several FXML features:

  1. It defines a @DefaultProperty, which allows users to omit the value property in the markup extension invocation. If not for the default property, users would have to explicitly spell out the name of the constructor parameter: {ClassPathResource value=/path/to/image.jpg}.
  2. It implements MarkupExtension.Supplier<Object> to make the extension compatible with String, URL, and URI target types, as there is no other common base class other than Object. However, it restricts the set of target types with the @ReturnType annotation. This allows the FXML compiler to type-check the markup extension usage at compile time, instead of potentially running into ClassCastException later at runtime.
  3. It queries the MarkupContext at runtime to decide which type of object to return based on the type of the property or argument targeted by the markup extension.

Note that the MarkupContext is only valid during the invocation of the get(MarkupContext) method, any attempt to access the markup context after the method has completed is undefined behavior and can lead to unpredictable results.


Table of contents


This site uses Just the Docs, a documentation theme for Jekyll.