/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.css; import javafx.beans.value.WritableValue; /** * StyleableProperty allows a {@link javafx.beans.property} to be styled from * CSS. *
This interface allows coordination between CSS
* processing and a javafx.beans.property
. The implementation
* ensure that the priority for setting the value is, in increasing order
* and assuming equal importance:
*
The {@link javafx.css.StyleablePropertyFactory StyleablePropertyFactory} * greatly simplifies creating a StyleableProperty and its corresponding CssMetaData.
* @since JavaFX 8.0 * @see javafx.css.StyleablePropertyFactory */ public interface StyleablePropertyjavafx.beans.property.StyleableProperty
*/
CssMetaData extends Styleable, T> getCssMetaData();
}