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

org.codefx.libfx.control.properties.ControlProperties Maven / Gradle / Ivy

The newest version!
package org.codefx.libfx.control.properties;

import javafx.collections.ObservableMap;

/**
 * Gives access to a {@link ControlPropertyListenerBuilder}.
 */
public class ControlProperties {

	/**
	 * Creates a builder for a {@link ControlPropertyListenerHandle} which observes the specified property map.
	 * 

* Note that it is often necessary to explicitly specify the type parameter {@code T} like so: * *

	 * ControlProperties.<String> on(...)
	 * 
* * @param * the type of values which the listener processes * @param properties * the {@link ObservableMap} holding the properties * @return a {@link ControlPropertyListenerBuilder} */ public static ControlPropertyListenerBuilder on(ObservableMap properties) { return ControlPropertyListenerBuilder. on(properties); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy