< prev index next >

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

Print this page

        

@@ -35,11 +35,11 @@
 public
 class PropertyVetoException extends Exception {
     private static final long serialVersionUID = 129596057694162164L;
 
     /**
-     * Constructs a <code>PropertyVetoException</code> with a
+     * Constructs a {@code PropertyVetoException} with a
      * detailed message.
      *
      * @param mess Descriptive message
      * @param evt A PropertyChangeEvent describing the vetoed change.
      */

@@ -47,11 +47,11 @@
         super(mess);
         this.evt = evt;
     }
 
      /**
-     * Gets the vetoed <code>PropertyChangeEvent</code>.
+     * Gets the vetoed {@code PropertyChangeEvent}.
      *
      * @return A PropertyChangeEvent describing the vetoed change.
      */
     public PropertyChangeEvent getPropertyChangeEvent() {
         return evt;
< prev index next >