June 1997
Intermediate to advanced
318 pages
8h 17m
English
Interface java.beans.VetoableChangeListener
A vetoable-change event is fired to
any registered event listeners when the value of a Bean’s
constrained property is going to be changed. The
VetoableChangeListener interface is implemented by
objects that register themselves for notifications of these proposed
property value changes. These listeners throw a
PropertyVetoException if they want to veto the
change.
public interface VetoableChangeListener extends java.util.EventListener
{
// methods
void vetoableChange(PropertyChangeEvent evt)
throws PropertyVetoException;
}
PropertyChangeEvent,
PropertyVetoException
Read now
Unlock full access