diff -Naur classpath/java/awt/Font.java classpath.psj/java/awt/Font.java --- classpath/java/awt/Font.java 2005-08-19 18:00:48.000000000 +0100 +++ classpath.psj/java/awt/Font.java 2005-09-08 20:56:14.000000000 +0100 @@ -391,15 +391,24 @@ /*************************************************************************/ /** - * Returns the style of the font. + * Returns the size of the font, as an integer. * - * @return The font style. + * @return The font size. + * + * @since 1.0 */ public int getSize () { return (int) peer.getSize (this); } +/** + * Returns the size of the font, as a float. + * + * @return The font size. + * + * @since 1.2 + */ public float getSize2D () { return peer.getSize (this);