wobs.scene3d.player
Interface X3DFieldEventListener
- All Superinterfaces:
- java.util.EventListener
public interface X3DFieldEventListener
- extends java.util.EventListener
The listener interface for receiving x3d field events.
The class that is interested in processing a field event should implement this interface.
The listener object created from this class is registered with a field using the X3DField's addFieldEventListener method.
A field event is generated each time the field is modified. When a field event occurs, the readableFieldChanged method in the listener object is invoked, and the X3DFieldEvent is passed to it.
readableFieldChanged
void readableFieldChanged(X3DFieldEvent event)
- Invoked when the value of a field has been changed.