Top Inners Fields Constructors Methods
com.sun.javafx.property.adapter

public Class PropertyDescriptor<T>

extends ReadOnlyPropertyDescriptor<T>
Class Inheritance
Imports
com.sun.javafx.property.MethodHelper, javafx.beans.property.Property, javafx.beans.property.adapter.ReadOnlyJavaBeanProperty, javafx.beans.value.ChangeListener, .ObservableValue, java.beans.PropertyChangeEvent, .PropertyVetoException, .VetoableChangeListener, java.lang.reflect.InvocationTargetException, .Method

Nested and Inner Type Summary

Modifier and TypeClass and Description
public class

Field Summary

Modifier and TypeField and Description
private static final String
private static final String
private static final int
private final Method
private final int
private static final String
private static final String
private static final int
private final Method
private final Method
private static final String
Inherited from com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor:
beanClassname

Constructor Summary

AccessConstructor and Description
public
PropertyDescriptor(String propertyName, Class<?> beanClass, Method getter, Method setter)

Method Summary

Modifier and TypeMethod and Description
public void
public Method
public void
Inherited from com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor:
capitalizedNamegetGettergetNamegetType

Field Detail

ADD_PREFIXback to summary
private static final String ADD_PREFIX

Hides com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.ADD_PREFIX.

ADD_VETOABLE_LISTENER_METHOD_NAMEback to summary
private static final String ADD_VETOABLE_LISTENER_METHOD_NAME
ADD_VETOABLE_LISTENER_TAKES_NAMEback to summary
private static final int ADD_VETOABLE_LISTENER_TAKES_NAME
addVetoListenerback to summary
private final Method addVetoListener
flagsback to summary
private final int flags

Hides com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.flags.

REMOVE_PREFIXback to summary
private static final String REMOVE_PREFIX

Hides com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.REMOVE_PREFIX.

REMOVE_VETOABLE_LISTENER_METHOD_NAMEback to summary
private static final String REMOVE_VETOABLE_LISTENER_METHOD_NAME
REMOVE_VETOABLE_LISTENER_TAKES_NAMEback to summary
private static final int REMOVE_VETOABLE_LISTENER_TAKES_NAME
removeVetoListenerback to summary
private final Method removeVetoListener
setterback to summary
private final Method setter
SUFFIXback to summary
private static final String SUFFIX

Hides com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.SUFFIX.

Constructor Detail

PropertyDescriptorback to summary
public PropertyDescriptor(String propertyName, Class<?> beanClass, Method getter, Method setter)

Method Detail

addListenerback to summary
public void addListener(ReadOnlyPropertyDescriptor<T>.ReadOnlyListener listener)

Overrides com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.addListener.

Annotations
@Override
getSetterback to summary
public Method getSetter()
removeListenerback to summary
public void removeListener(ReadOnlyPropertyDescriptor<T>.ReadOnlyListener listener)

Overrides com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.removeListener.

Annotations
@Override
com.sun.javafx.property.adapter back to summary

public Class PropertyDescriptor.Listener

extends ReadOnlyPropertyDescriptor<T>.ReadOnlyListener
implements ChangeListener<T>, VetoableChangeListener
Class Inheritance
All Implemented Interfaces
java.beans.VetoableChangeListener, java.util.EventListener, javafx.beans.value.ChangeListener

Field Summary

Modifier and TypeField and Description
private boolean
Inherited from com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.ReadOnlyListener:
bean

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public void
changed(ObservableValue<? extends T>
The ObservableValue which value changed
observable
,
T
The old value
oldValue
,
T
The new value
newValue
)

Implements javafx.beans.value.ChangeListener.changed.

Called when the value of an ObservableValue changes.

public void
vetoableChange(PropertyChangeEvent
a PropertyChangeEvent object describing the event source and the property that has changed.
propertyChangeEvent
)

Implements java.beans.VetoableChangeListener.vetoableChange.

This method gets called when a constrained property is changed.

Inherited from com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.ReadOnlyListener:
checkRefgetBeanpropertyChangewasGarbageCollected

Field Detail

updatingback to summary
private boolean updating

Constructor Detail

Listenerback to summary
public Listener(Object bean, ReadOnlyJavaBeanProperty<T> property)

Method Detail

changedback to summary
public void changed(ObservableValue<? extends T> observable, T oldValue, T newValue)

Implements javafx.beans.value.ChangeListener.changed.

Doc from javafx.beans.value.ChangeListener.changed.

Called when the value of an ObservableValue changes.

In general, it is considered bad practice to modify the observed value in this method.

Parameters
observable:ObservableValue<? extends T>

The ObservableValue which value changed

oldValue:T

The old value

newValue:T

The new value

Annotations
@Override
vetoableChangeback to summary
public void vetoableChange(PropertyChangeEvent propertyChangeEvent) throws PropertyVetoException

Implements java.beans.VetoableChangeListener.vetoableChange.

Doc from java.beans.VetoableChangeListener.vetoableChange.

This method gets called when a constrained property is changed.

Parameters
propertyChangeEvent:PropertyChangeEvent

a PropertyChangeEvent object describing the event source and the property that has changed.

Annotations
@Override
Exceptions
PropertyVetoException:
if the recipient wishes the property change to be rolled back.