Index: java/awt/Component.java =================================================================== RCS file: /cvs/gcc/gcc/libjava/java/awt/Component.java,v retrieving revision 1.37.2.28 diff -u -r1.37.2.28 Component.java --- java/awt/Component.java 25 Nov 2004 02:34:54 -0000 1.37.2.28 +++ java/awt/Component.java 6 Dec 2004 13:48:53 -0000 @@ -1080,7 +1080,7 @@ * * @return the locale for this component * @throws IllegalComponentStateException if it has no locale or parent - * @see setLocale(Locale) + * @see #setLocale(Locale) * @since 1.1 */ public Locale getLocale() @@ -1955,7 +1955,7 @@ * @see Graphics#drawImage(Image, int, int, ImageObserver) * @see Graphics#drawImage(Image, int, int, int, int, Color, ImageObserver) * @see Graphics#drawImage(Image, int, int, int, int, ImageObserver) - * @see ImageObserver#update(Image, int, int, int, int, int) + * @see ImageObserver#imageUpdate(Image, int, int, int, int, int) */ public boolean imageUpdate(Image img, int flags, int x, int y, int w, int h) { @@ -2097,7 +2097,7 @@ * @param observer the observer to notify of image loading progress * @return the image observer flags indicating the status of the load * @see #prepareImage(Image, int, int, ImageObserver) - * @see #Toolkit#checkImage(Image, int, int, ImageObserver) + * @see Toolkit#checkImage(Image, int, int, ImageObserver) * @throws NullPointerException if image is null */ public int checkImage(Image image, ImageObserver observer) @@ -2115,7 +2115,7 @@ * @param observer the observer to notify of image loading progress * @return the image observer flags indicating the status of the load * @see #prepareImage(Image, int, int, ImageObserver) - * @see #Toolkit#checkImage(Image, int, int, ImageObserver) + * @see Toolkit#checkImage(Image, int, int, ImageObserver) */ public int checkImage(Image image, int width, int height, ImageObserver observer) @@ -2134,7 +2134,7 @@ * @param ignoreRepaint the new setting for ignoring repaint events * @see #getIgnoreRepaint() * @see BufferStrategy - * @see GraphicsDevice.setFullScreenWindow(Window) + * @see GraphicsDevice#setFullScreenWindow(Window) * @since 1.4 */ public void setIgnoreRepaint(boolean ignoreRepaint) @@ -3178,15 +3178,15 @@ * AWT 1.0 event handler. * * This method calls one of the event-specific handler methods. For - * example for key events, either address@hidden #keyDown (Event evt, int - * key)} or address@hidden keyUp (Event evt, int key)} is called. A derived + * example for key events, either address@hidden #keyDown(Event,int)} + * or address@hidden #keyUp(Event,int)} is called. A derived * component can override one of these event-specific methods if it * only needs to handle certain event types. Otherwise it can * override handleEvent itself and handle any event. * * @param evt the event to handle * @return true if the event was handled, false otherwise - * @deprecated use address@hidden #processEvent (AWTEvent)} instead + * @deprecated use address@hidden #processEvent(AWTEvent)} instead */ public boolean handleEvent (Event evt) { @@ -3469,8 +3469,8 @@ * Specify whether this component can receive focus. This method also * sets the address@hidden #isFocusTraversableOverridden} field to 1, which * appears to be the undocumented way address@hidden - * DefaultFocusTraversalPolicy#accept()} determines whether to respect - * the address@hidden #isFocusable()} method of the component. + * DefaultFocusTraversalPolicy#accept(Component)} determines whether to + * respect the address@hidden #isFocusable()} method of the component. * * @param focusable the new focusable status * @since 1.4 @@ -3484,10 +3484,10 @@ /** * Sets the focus traversal keys for one of the three focus - * traversal directions supported by Components: address@hidden - * #KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS}, address@hidden - * #KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS}, or address@hidden - * #KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS}. Normally, the + * traversal directions supported by Components: + * address@hidden #KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS}, + * address@hidden #KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS}, or + * address@hidden #KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS}. Normally, the * default values should match the operating system's native * choices. To disable a given traversal, use * Collections.EMPTY_SET. The event dispatcher will @@ -3716,7 +3716,7 @@ * receives a FOCUS_GAINED event. * * The behaviour of this method is platform-dependent. - * address@hidden #requestFocusInWindow} should be used instead. + * address@hidden #requestFocusInWindow()} should be used instead. * * @see #requestFocusInWindow () * @see FocusEvent @@ -3791,7 +3791,7 @@ * receives a FOCUS_GAINED event. * * The behaviour of this method is platform-dependent. - * address@hidden #requestFocusInWindow} should be used instead. + * address@hidden #requestFocusInWindow()} should be used instead. * * If the return value is false, the request is guaranteed to fail. * If the return value is true, the request will succeed unless it @@ -4069,8 +4069,8 @@ * However, if this is a Window, the default focus owner in the * window in the current focus cycle is focused instead. * - * @see #requestFocus () - * @see #isFocusCycleRoot () + * @see #requestFocus() + * @see #isFocusCycleRoot(Container) * @since 1.4 */ public void transferFocusUpCycle () Index: java/awt/geom/Rectangle2D.java =================================================================== RCS file: /cvs/gcc/gcc/libjava/java/awt/geom/Rectangle2D.java,v retrieving revision 1.8.14.2 diff -u -r1.8.14.2 Rectangle2D.java --- java/awt/geom/Rectangle2D.java 16 Nov 2004 09:55:40 -0000 1.8.14.2 +++ java/awt/geom/Rectangle2D.java 6 Dec 2004 13:48:53 -0000 @@ -1,5 +1,5 @@ /* Rectangle2D.java -- generic rectangles in 2-D space - Copyright (C) 2000, 2001, 2002 Free Software Foundation + Copyright (C) 2000, 2001, 2002, 2004 Free Software Foundation This file is part of GNU Classpath. @@ -57,30 +57,30 @@ public abstract class Rectangle2D extends RectangularShape { /** - * The point lies left of the rectangle (p.x < r.x). + * The point lies left of the rectangle (p.x < r.x). * - * @see #outcode() + * @see #outcode(double, double) */ public static final int OUT_LEFT = 1; /** - * The point lies above the rectangle (p.y < r.y). + * The point lies above the rectangle (p.y < r.y). * - * @see #outcode() + * @see #outcode(double, double) */ public static final int OUT_TOP = 2; /** * The point lies right of the rectangle (p.x > r.maxX). * - * @see #outcode() + * @see #outcode(double, double) */ public static final int OUT_RIGHT = 4; /** * The point lies below of the rectangle (p.y > r.maxY). * - * @see #outcode() + * @see #outcode(double, double) */ public static final int OUT_BOTTOM = 8;