Top Description Fields Constructors Methods
javafx.beans.property

public Class SimpleDoubleProperty

extends DoublePropertyBase
Class Inheritance
Known Direct Subclasses
javafx.beans.property.ReadOnlyDoubleWrapper

This class provides a full implementation of a Property wrapping a double value.
Since
JavaFX 2.0
See Also
DoublePropertyBase

Field Summary

Modifier and TypeField and Description
private final Object
private static final Object
private static final String
private final String

Constructor Summary

AccessConstructor and Description
public
SimpleDoubleProperty()

The constructor of DoubleProperty

public
SimpleDoubleProperty(double
the initial value of the wrapped value
initialValue
)

The constructor of DoubleProperty

public
SimpleDoubleProperty(Object
the bean of this DoubleProperty
bean
,
String
the name of this DoubleProperty
name
)

The constructor of DoubleProperty

public
SimpleDoubleProperty(Object
the bean of this DoubleProperty
bean
,
String
the name of this DoubleProperty
name
,
double
the initial value of the wrapped value
initialValue
)

The constructor of DoubleProperty

Method Summary

Modifier and TypeMethod and Description
public Object
getBean()

Implements javafx.beans.property.ReadOnlyProperty.getBean.

Returns the Object that contains this property.

public String
getName()

Implements javafx.beans.property.ReadOnlyProperty.getName.

Returns the name of this property.

Inherited from javafx.beans.property.DoublePropertyBase:
addListeneraddListenerbindfireValueChangedEventgetinvalidatedisBoundremoveListenerremoveListenersettoStringunbind

Field Detail

beanback to summary
private final Object bean
DEFAULT_BEANback to summary
private static final Object DEFAULT_BEAN
DEFAULT_NAMEback to summary
private static final String DEFAULT_NAME
nameback to summary
private final String name

Constructor Detail

SimpleDoublePropertyback to summary
public SimpleDoubleProperty()

The constructor of DoubleProperty

SimpleDoublePropertyback to summary
public SimpleDoubleProperty(double initialValue)

The constructor of DoubleProperty

Parameters
initialValue:double

the initial value of the wrapped value

SimpleDoublePropertyback to summary
public SimpleDoubleProperty(Object bean, String name)

The constructor of DoubleProperty

Parameters
bean:Object

the bean of this DoubleProperty

name:String

the name of this DoubleProperty

SimpleDoublePropertyback to summary
public SimpleDoubleProperty(Object bean, String name, double initialValue)

The constructor of DoubleProperty

Parameters
bean:Object

the bean of this DoubleProperty

name:String

the name of this DoubleProperty

initialValue:double

the initial value of the wrapped value

Method Detail

getBeanback to summary
public Object getBean()

Implements javafx.beans.property.ReadOnlyProperty.getBean.

Doc from javafx.beans.property.ReadOnlyProperty.getBean.

Returns the Object that contains this property. If this property is not contained in an Object, null is returned.

Returns:Object

the containing Object or null

Annotations
@Override
getNameback to summary
public String getName()

Implements javafx.beans.property.ReadOnlyProperty.getName.

Doc from javafx.beans.property.ReadOnlyProperty.getName.

Returns the name of this property. If the property does not have a name, this method returns an empty String.

Returns:String

the name or an empty String

Annotations
@Override