< prev index next >

src/java.desktop/share/classes/java/beans/PropertyVetoException.java

Print this page

        

*** 35,45 **** public class PropertyVetoException extends Exception { private static final long serialVersionUID = 129596057694162164L; /** ! * Constructs a <code>PropertyVetoException</code> with a * detailed message. * * @param mess Descriptive message * @param evt A PropertyChangeEvent describing the vetoed change. */ --- 35,45 ---- public class PropertyVetoException extends Exception { private static final long serialVersionUID = 129596057694162164L; /** ! * Constructs a {@code PropertyVetoException} with a * detailed message. * * @param mess Descriptive message * @param evt A PropertyChangeEvent describing the vetoed change. */
*** 47,57 **** super(mess); this.evt = evt; } /** ! * Gets the vetoed <code>PropertyChangeEvent</code>. * * @return A PropertyChangeEvent describing the vetoed change. */ public PropertyChangeEvent getPropertyChangeEvent() { return evt; --- 47,57 ---- super(mess); this.evt = evt; } /** ! * Gets the vetoed {@code PropertyChangeEvent}. * * @return A PropertyChangeEvent describing the vetoed change. */ public PropertyChangeEvent getPropertyChangeEvent() { return evt;
< prev index next >