src/share/classes/java/awt/Event.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

*** 55,65 **** * one of the defined action-key identifiers in the * <code>Event</code> class (<code>PGUP</code>, * <code>PGDN</code>, <code>F1</code>, <code>F2</code>, etc). * * @author Sami Shaio ! * @since JDK1.0 */ public class Event implements java.io.Serializable { private transient long data; /* Modifier constants */ --- 55,65 ---- * one of the defined action-key identifiers in the * <code>Event</code> class (<code>PGUP</code>, * <code>PGDN</code>, <code>F1</code>, <code>F2</code>, etc). * * @author Sami Shaio ! * @since 1.0 */ public class Event implements java.io.Serializable { private transient long data; /* Modifier constants */
*** 869,879 **** * <p> * Returns a representation of this event's values as a string. * @return a string that represents the event and the values * of its member fields. * @see java.awt.Event#paramString ! * @since JDK1.1 */ public String toString() { return getClass().getName() + "[" + paramString() + "]"; } } --- 869,879 ---- * <p> * Returns a representation of this event's values as a string. * @return a string that represents the event and the values * of its member fields. * @see java.awt.Event#paramString ! * @since 1.1 */ public String toString() { return getClass().getName() + "[" + paramString() + "]"; } }