src/share/classes/java/awt/FontMetrics.java

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

*** 92,102 **** * generally independent of the rotation applied to the font (modulo * possible grid hinting effects). See {@link java.awt.Font Font}. * * @author Jim Graham * @see java.awt.Font ! * @since JDK1.0 */ public abstract class FontMetrics implements java.io.Serializable { static { /* ensure that the necessary native libraries are loaded */ --- 92,102 ---- * generally independent of the rotation applied to the font (modulo * possible grid hinting effects). See {@link java.awt.Font Font}. * * @author Jim Graham * @see java.awt.Font ! * @since 1.0 */ public abstract class FontMetrics implements java.io.Serializable { static { /* ensure that the necessary native libraries are loaded */
*** 623,633 **** /** * Returns a representation of this <code>FontMetrics</code> * object's values as a <code>String</code>. * @return a <code>String</code> representation of this * <code>FontMetrics</code> object. - * @since JDK1.0. */ public String toString() { return getClass().getName() + "[font=" + getFont() + "ascent=" + getAscent() + --- 623,632 ----