Javadoc fixes.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1557 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2002-07-02 23:15:53 +00:00
parent 4dcb62d186
commit 627ee5a1db
5 changed files with 13 additions and 12 deletions
@@ -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; package com.threerings.media;
import java.awt.Dimension; import java.awt.Dimension;
import java.awt.Graphics2D; import java.awt.Graphics2D;
import java.awt.Graphics;
import java.awt.Point; import java.awt.Point;
import java.awt.Rectangle; import java.awt.Rectangle;
import java.awt.Shape; import java.awt.Shape;
@@ -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; package com.threerings.media.sprite;
@@ -102,7 +102,7 @@ public class SpriteManager
/** /**
* Returns a list of all sprites registered with the sprite manager. * Returns a list of all sprites registered with the sprite manager.
* The returned list is immutable, sprites should be added or removed * 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 () public List getSprites ()
{ {
@@ -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; package com.threerings.media.util;
@@ -42,7 +42,7 @@ public interface Pathable
/** /**
* Should return the orientation of the pathable, or {@link * 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 (); public int getOrientation ();
@@ -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; package com.threerings.miso.scene.util;
@@ -252,8 +252,8 @@ public class IsoUtil
/** /**
* Given two points in an isometric coordinate system (in which {@link * Given two points in an isometric coordinate system (in which {@link
* NORTH} is in the direction of the negative x-axis and {@link WEST} * #NORTH} is in the direction of the negative x-axis and {@link
* in the direction of the negative y-axis), return the compass * #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 * direction that point B lies in from point A. This method is used
* to determine direction for both tile coordinates and fine * to determine direction for both tile coordinates and fine
* coordinates within a tile, since the coordinate systems are the * coordinates within a tile, since the coordinate systems are the
@@ -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; package com.threerings.util;
@@ -39,7 +39,7 @@ public class DirectionUtil implements DirectionCodes
/** /**
* Returns the direction code that corresponds to the supplied string * 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. * direction code.
*/ */
public static int fromString (String dirstr) 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 * Returns the direction code that corresponds to the supplied short
* string or {@link NONE} if the string does not correspond to a known * string or {@link #NONE} if the string does not correspond to a
* direction code. * known direction code.
*/ */
public static int fromShortString (String dirstr) public static int fromShortString (String dirstr)
{ {