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

public Class ReadOnlyPropertyDescriptor<T>

extends Object
Class Inheritance
Known Direct Subclasses
com.sun.javafx.property.adapter.PropertyDescriptor
Imports
javafx.beans.WeakListener, javafx.beans.property.adapter.ReadOnlyJavaBeanProperty, java.beans.PropertyChangeEvent, .PropertyChangeListener, java.lang.ref.WeakReference, java.lang.reflect.InvocationTargetException, .Method, com.sun.javafx.reflect.ReflectUtil

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 int
private static final String
private final Method
protected final Class<?>
private final int
private final Method
protected final String
private static final String
private static final int
private static final String
private final Method
private static final String
private final Class<?>

Constructor Summary

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

Method Summary

Modifier and TypeMethod and Description
public void
public static String
public Method
public String
public Class<?>
public void
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

ADD_LISTENER_METHOD_NAMEback to summary
private static final String ADD_LISTENER_METHOD_NAME
ADD_LISTENER_TAKES_NAMEback to summary
private static final int ADD_LISTENER_TAKES_NAME
ADD_PREFIXback to summary
private static final String ADD_PREFIX
addChangeListenerback to summary
private final Method addChangeListener
beanClassback to summary
protected final Class<?> beanClass
flagsback to summary
private final int flags
getterback to summary
private final Method getter
nameback to summary
protected final String name
REMOVE_LISTENER_METHOD_NAMEback to summary
private static final String REMOVE_LISTENER_METHOD_NAME
REMOVE_LISTENER_TAKES_NAMEback to summary
private static final int REMOVE_LISTENER_TAKES_NAME
REMOVE_PREFIXback to summary
private static final String REMOVE_PREFIX
removeChangeListenerback to summary
private final Method removeChangeListener
SUFFIXback to summary
private static final String SUFFIX
typeback to summary
private final Class<?> type

Constructor Detail

ReadOnlyPropertyDescriptorback to summary
public ReadOnlyPropertyDescriptor(String propertyName, Class<?> beanClass, Method getter)

Method Detail

addListenerback to summary
public void addListener(ReadOnlyPropertyDescriptor<T>.ReadOnlyListener listener)
capitalizedNameback to summary
public static String capitalizedName(String name)
getGetterback to summary
public Method getGetter()
getNameback to summary
public String getName()
getTypeback to summary
public Class<?> getType()
removeListenerback to summary
public void removeListener(ReadOnlyPropertyDescriptor<T>.ReadOnlyListener listener)
com.sun.javafx.property.adapter back to summary

public Class ReadOnlyPropertyDescriptor.ReadOnlyListener

extends Object
implements PropertyChangeListener, WeakListener
Class Inheritance
  • java.lang.Object
  • com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor.ReadOnlyListener
All Implemented Interfaces
javafx.beans.WeakListener, java.beans.PropertyChangeListener, java.util.EventListener
Known Direct Subclasses
com.sun.javafx.property.adapter.PropertyDescriptor.Listener

Field Summary

Modifier and TypeField and Description
protected final Object
private final WeakReference<ReadOnlyJavaBeanProperty<T>>

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
protected ReadOnlyJavaBeanProperty<T>
public Object
public void
propertyChange(PropertyChangeEvent
A PropertyChangeEvent object describing the event source and the property that has changed.
propertyChangeEvent
)

Implements java.beans.PropertyChangeListener.propertyChange.

This method gets called when a bound property is changed.

public boolean
wasGarbageCollected()

Implements javafx.beans.WeakListener.wasGarbageCollected.

Returns true if the linked listener was garbage-collected.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

beanback to summary
protected final Object bean
propertyRefback to summary
private final WeakReference<ReadOnlyJavaBeanProperty<T>> propertyRef

Constructor Detail

ReadOnlyListenerback to summary
public ReadOnlyListener(Object bean, ReadOnlyJavaBeanProperty<T> property)

Method Detail

checkRefback to summary
protected ReadOnlyJavaBeanProperty<T> checkRef()
getBeanback to summary
public Object getBean()
propertyChangeback to summary
public void propertyChange(PropertyChangeEvent propertyChangeEvent)

Implements java.beans.PropertyChangeListener.propertyChange.

Doc from java.beans.PropertyChangeListener.propertyChange.

This method gets called when a bound property is changed.

Parameters
propertyChangeEvent:PropertyChangeEvent

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

Annotations
@Override
wasGarbageCollectedback to summary
public boolean wasGarbageCollected()

Implements javafx.beans.WeakListener.wasGarbageCollected.

Doc from javafx.beans.WeakListener.wasGarbageCollected.

Returns true if the linked listener was garbage-collected. In this case, the listener can be removed from the observable.

Returns:boolean

true if the linked listener was garbage-collected.

Annotations
@Override