< prev index next >
src/java.desktop/share/classes/java/awt/event/ComponentListener.java
Print this page
@@ -29,22 +29,22 @@
/**
* The listener interface for receiving component events.
* The class that is interested in processing a component event
* either implements this interface (and all the methods it
- * contains) or extends the abstract <code>ComponentAdapter</code> class
+ * contains) or extends the abstract {@code ComponentAdapter} class
* (overriding only the methods of interest).
* The listener object created from that class is then registered with a
- * component using the component's <code>addComponentListener</code>
+ * component using the component's {@code addComponentListener}
* method. When the component's size, location, or visibility
* changes, the relevant method in the listener object is invoked,
- * and the <code>ComponentEvent</code> is passed to it.
+ * and the {@code ComponentEvent} is passed to it.
* <P>
* Component events are provided for notification purposes ONLY;
* The AWT will automatically handle component moves and resizes
* internally so that GUI layout works properly regardless of
- * whether a program registers a <code>ComponentListener</code> or not.
+ * whether a program registers a {@code ComponentListener} or not.
*
* @see ComponentAdapter
* @see ComponentEvent
* @see <a href="http://docs.oracle.com/javase/tutorial/uiswing/events/componentlistener.html">Tutorial: Writing a Component Listener</a>
*
< prev index next >