All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gsi.chart.ui.css.StylishFloatProperty Maven / Gradle / Ivy

Go to download

This charting library ${project.artifactId}- is an extension in the spirit of Oracle's XYChart and performance/time-proven JDataViewer charting functionalities. Emphasis was put on plotting performance for both large number of data points and real-time displays, as well as scientific accuracies leading to error bar/surface plots, and other scientific plotting features (parameter measurements, fitting, multiple axes, zoom, ...).

There is a newer version: 11.2.7
Show newest version
package de.gsi.chart.ui.css;

import javafx.beans.NamedArg;
import javafx.css.CssMetaData;
import javafx.css.SimpleStyleableFloatProperty;
import javafx.css.Styleable;

/**
 * 
 * Short-hand to reduce boiler-plate type code of customisation of
 * SimpleStyleableFloatProperty to always include an axis re-layout.
 * 
 * N.B. Also, the warning of inheriting more than 'n' generations is thrown only
 * once this way.
 * 
 * @author rstein
 *
 */
public class StylishFloatProperty extends SimpleStyleableFloatProperty {
    protected Runnable invalidateAction;

    /**
     * The constructor of the {@code StylishFloatProperty}.
     *
     * @param cssMetaData
     *            the CssMetaData associated with this
     *            {@code StylishDoubleProperty}
     * @param bean
     *            the bean of this {@code BooleanProperty}
     * @param name
     *            the name of this {@code BooleanProperty}
     * @param initialValue
     *            the initial value of the wrapped {@code Object}
     * @param invalidateAction
     *            lambda expression executed in invalidated
     */
    public StylishFloatProperty(@NamedArg("cssMetaData") CssMetaData cssMetaData,
            @NamedArg("bean") Object bean, @NamedArg("name") String name, @NamedArg("initialValue") Float initialValue,
            Runnable invalidateAction) {
        super(cssMetaData, bean, name, initialValue);
        this.invalidateAction = invalidateAction;
    }

    @Override
    protected void invalidated() {
        invalidateAction.run();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy