diff --git a/src/java/com/threerings/media/VirtualMediaPanel.java b/src/java/com/threerings/media/VirtualMediaPanel.java index 1e0c0f181..b9feb4c7f 100644 --- a/src/java/com/threerings/media/VirtualMediaPanel.java +++ b/src/java/com/threerings/media/VirtualMediaPanel.java @@ -1,10 +1,11 @@ // -// $Id: VirtualMediaPanel.java,v 1.6 2002/06/20 07:49:44 mdb Exp $ +// $Id: VirtualMediaPanel.java,v 1.7 2002/07/02 23:15:53 shaper Exp $ package com.threerings.media; import java.awt.Dimension; import java.awt.Graphics2D; +import java.awt.Graphics; import java.awt.Point; import java.awt.Rectangle; import java.awt.Shape; diff --git a/src/java/com/threerings/media/sprite/SpriteManager.java b/src/java/com/threerings/media/sprite/SpriteManager.java index 417175e26..27c9840e5 100644 --- a/src/java/com/threerings/media/sprite/SpriteManager.java +++ b/src/java/com/threerings/media/sprite/SpriteManager.java @@ -1,5 +1,5 @@ // -// $Id: SpriteManager.java,v 1.34 2002/06/26 02:36:50 mdb Exp $ +// $Id: SpriteManager.java,v 1.35 2002/07/02 23:15:53 shaper Exp $ package com.threerings.media.sprite; @@ -102,7 +102,7 @@ public class SpriteManager /** * Returns a list of all sprites registered with the sprite manager. * The returned list is immutable, sprites should be added or removed - * using {@link addSprite} or {@link removeSprite}. + * using {@link #addSprite} or {@link #removeSprite}. */ public List getSprites () { diff --git a/src/java/com/threerings/media/util/Pathable.java b/src/java/com/threerings/media/util/Pathable.java index a3572778c..62ba27a95 100644 --- a/src/java/com/threerings/media/util/Pathable.java +++ b/src/java/com/threerings/media/util/Pathable.java @@ -1,5 +1,5 @@ // -// $Id: Pathable.java,v 1.3 2002/06/26 23:51:06 mdb Exp $ +// $Id: Pathable.java,v 1.4 2002/07/02 23:15:53 shaper Exp $ package com.threerings.media.util; @@ -42,7 +42,7 @@ public interface Pathable /** * Should return the orientation of the pathable, or {@link - * DirectionCodes.NONE} if the pathable does not support orientation. + * DirectionCodes#NONE} if the pathable does not support orientation. */ public int getOrientation (); diff --git a/src/java/com/threerings/miso/client/util/IsoUtil.java b/src/java/com/threerings/miso/client/util/IsoUtil.java index 2fbbec3ca..aea0825d8 100644 --- a/src/java/com/threerings/miso/client/util/IsoUtil.java +++ b/src/java/com/threerings/miso/client/util/IsoUtil.java @@ -1,5 +1,5 @@ // -// $Id: IsoUtil.java,v 1.36 2002/06/27 01:27:13 ray Exp $ +// $Id: IsoUtil.java,v 1.37 2002/07/02 23:15:53 shaper Exp $ package com.threerings.miso.scene.util; @@ -252,8 +252,8 @@ public class IsoUtil /** * Given two points in an isometric coordinate system (in which {@link - * NORTH} is in the direction of the negative x-axis and {@link WEST} - * in the direction of the negative y-axis), return the compass + * #NORTH} is in the direction of the negative x-axis and {@link + * #WEST} in the direction of the negative y-axis), return the compass * direction that point B lies in from point A. This method is used * to determine direction for both tile coordinates and fine * coordinates within a tile, since the coordinate systems are the diff --git a/src/java/com/threerings/util/DirectionUtil.java b/src/java/com/threerings/util/DirectionUtil.java index faf888646..8e9cd446e 100644 --- a/src/java/com/threerings/util/DirectionUtil.java +++ b/src/java/com/threerings/util/DirectionUtil.java @@ -1,5 +1,5 @@ // -// $Id: DirectionUtil.java,v 1.6 2002/06/26 23:53:07 mdb Exp $ +// $Id: DirectionUtil.java,v 1.7 2002/07/02 23:15:53 shaper Exp $ package com.threerings.util; @@ -39,7 +39,7 @@ public class DirectionUtil implements DirectionCodes /** * Returns the direction code that corresponds to the supplied string - * or {@link NONE} if the string does not correspond to a known + * or {@link #NONE} if the string does not correspond to a known * direction code. */ public static int fromString (String dirstr) @@ -54,8 +54,8 @@ public class DirectionUtil implements DirectionCodes /** * Returns the direction code that corresponds to the supplied short - * string or {@link NONE} if the string does not correspond to a known - * direction code. + * string or {@link #NONE} if the string does not correspond to a + * known direction code. */ public static int fromShortString (String dirstr) {