< prev index next >

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

Print this page

        

@@ -36,20 +36,20 @@
  */
 
 public class PropertyEditorSupport implements PropertyEditor {
 
     /**
-     * Constructs a <code>PropertyEditorSupport</code> object.
+     * Constructs a {@code PropertyEditorSupport} object.
      *
      * @since 1.5
      */
     public PropertyEditorSupport() {
         setSource(this);
     }
 
     /**
-     * Constructs a <code>PropertyEditorSupport</code> object.
+     * Constructs a {@code PropertyEditorSupport} object.
      *
      * @param source the source used for event firing
      * @since 1.5
      */
     public PropertyEditorSupport(Object source) {

@@ -61,11 +61,11 @@
 
     /**
      * Returns the bean that is used as the
      * source of events. If the source has not
      * been explicitly set then this instance of
-     * <code>PropertyEditorSupport</code> is returned.
+     * {@code PropertyEditorSupport} is returned.
      *
      * @return the source object or this instance
      * @since 1.5
      */
     public Object getSource() {
< prev index next >