Top Description Fields Constructors Methods
javafx.beans.property.adapter

public final Class JavaBeanFloatPropertyBuilder

extends Object
Class Inheritance
Imports
com.sun.javafx.property.adapter.JavaBeanPropertyBuilderHelper, .PropertyDescriptor, java.lang.reflect.Method

A JavaBeanFloatPropertyBuilder can be used to create JavaBeanFloatProperties. To create a JavaBeanFloatProperty one first has to call create() to generate a builder, set the required properties, and then one can call build() to generate the property.

Not all properties of a builder have to specified, there are several combinations possible. As a minimum the name(java.lang.String) of the property and the bean(java.lang.Object) have to be specified. If the names of the getter and setter follow the conventions, this is sufficient. Otherwise it is possible to specify an alternative name for the getter and setter (getter(java.lang.String) and setter(java.lang.String)) or the getter and setter Methods directly (getter(java.lang.reflect.Method) and setter(java.lang.reflect.Method)).

All methods to change properties return a reference to this builder, to enable method chaining.

If you have to generate adapters for the same property of several instances of the same class, you can reuse a JavaBeanFloatPropertyBuilder by switching the Java Bean instance (with bean(java.lang.Object) and calling build().

Since
JavaFX 2.1
See Also
JavaBeanFloatProperty

Field Summary

Modifier and TypeField and Description
private JavaBeanPropertyBuilderHelper<Number>

Constructor Summary

AccessConstructor and Description
private

Method Summary

Modifier and TypeMethod and Description
public JavaBeanFloatPropertyBuilder

Returns:

a reference to this builder to enable method chaining
bean
(Object
the Java Bean instance
bean
)

Sets the Java Bean instance the adapter should connect to.

public JavaBeanFloatPropertyBuilder

Returns:

a reference to this builder to enable method chaining
beanClass
(Class<?>
the Java Bean class
beanClass
)

Sets the Java Bean class in which the getter and setter should be searched.

public JavaBeanFloatProperty

Returns:

the new JavaBeanFloatProperty
build
()

Generates a new JavaBeanFloatProperty with the current settings.

public static JavaBeanFloatPropertyBuilder

Returns:

the new JavaBeanFloatPropertyBuilder
create
()

Creates a new instance of JavaBeanFloatPropertyBuilder.

public JavaBeanFloatPropertyBuilder

Returns:

a reference to this builder to enable method chaining
getter
(String
the alternative name of the getter
getter
)

Sets an alternative name for the getter.

public JavaBeanFloatPropertyBuilder

Returns:

a reference to this builder to enable method chaining
getter
(Method
the getter
getter
)

Sets the getter method directly.

public JavaBeanFloatPropertyBuilder

Returns:

a reference to this builder to enable method chaining
name
(String
the name of the property
name
)

Sets the name of the property.

public JavaBeanFloatPropertyBuilder

Returns:

a reference to this builder to enable method chaining
setter
(String
the alternative name of the setter
setter
)

Sets an alternative name for the setter.

public JavaBeanFloatPropertyBuilder

Returns:

a reference to this builder to enable method chaining
setter
(Method
the setter
setter
)

Sets the setter method directly.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

helperback to summary
private JavaBeanPropertyBuilderHelper<Number> helper

Constructor Detail

JavaBeanFloatPropertyBuilderback to summary
private JavaBeanFloatPropertyBuilder()

Method Detail

beanback to summary
public JavaBeanFloatPropertyBuilder bean(Object bean)

Sets the Java Bean instance the adapter should connect to.

Parameters
bean:Object

the Java Bean instance

Returns:JavaBeanFloatPropertyBuilder

a reference to this builder to enable method chaining

beanClassback to summary
public JavaBeanFloatPropertyBuilder beanClass(Class<?> beanClass)

Sets the Java Bean class in which the getter and setter should be searched. This can be useful if the builder should generate adapters for several Java Beans of different types.

Parameters
beanClass:Class<?>

the Java Bean class

Returns:JavaBeanFloatPropertyBuilder

a reference to this builder to enable method chaining

buildback to summary
public JavaBeanFloatProperty build() throws NoSuchMethodException

Generates a new JavaBeanFloatProperty with the current settings.

Returns:JavaBeanFloatProperty

the new JavaBeanFloatProperty

Exceptions
NoSuchMethodException:
if the settings were not sufficient to find the getter and the setter of the Java Bean property
IllegalArgumentException:
if the Java Bean property is not of type float or Float
createback to summary
public static JavaBeanFloatPropertyBuilder create()

Creates a new instance of JavaBeanFloatPropertyBuilder.

Returns:JavaBeanFloatPropertyBuilder

the new JavaBeanFloatPropertyBuilder

getterback to summary
public JavaBeanFloatPropertyBuilder getter(String getter)

Sets an alternative name for the getter. This can be omitted if the name of the getter follows Java Bean naming conventions.

Parameters
getter:String

the alternative name of the getter

Returns:JavaBeanFloatPropertyBuilder

a reference to this builder to enable method chaining

getterback to summary
public JavaBeanFloatPropertyBuilder getter(Method getter)

Sets the getter method directly. This can be omitted if the name of the getter follows Java Bean naming conventions.

Parameters
getter:Method

the getter

Returns:JavaBeanFloatPropertyBuilder

a reference to this builder to enable method chaining

nameback to summary
public JavaBeanFloatPropertyBuilder name(String name)

Sets the name of the property.

Parameters
name:String

the name of the property

Returns:JavaBeanFloatPropertyBuilder

a reference to this builder to enable method chaining

setterback to summary
public JavaBeanFloatPropertyBuilder setter(String setter)

Sets an alternative name for the setter. This can be omitted if the name of the setter follows Java Bean naming conventions.

Parameters
setter:String

the alternative name of the setter

Returns:JavaBeanFloatPropertyBuilder

a reference to this builder to enable method chaining

setterback to summary
public JavaBeanFloatPropertyBuilder setter(Method setter)

Sets the setter method directly. This can be omitted if the name of the setter follows Java Bean naming conventions.

Parameters
setter:Method

the setter

Returns:JavaBeanFloatPropertyBuilder

a reference to this builder to enable method chaining