[mud4j-commit] SF.net SVN: mud4j: [47] trunk/mud4j-core/src/java/net/sf/mud4j/world/ Direction.java
Status: Pre-Alpha
Brought to you by:
mpurland
From: <mpu...@us...> - 2006-12-24 17:33:31
|
Revision: 47 http://mud4j.svn.sourceforge.net/mud4j/?rev=47&view=rev Author: mpurland Date: 2006-12-24 09:33:29 -0800 (Sun, 24 Dec 2006) Log Message: ----------- Provide javadoc for constructor. Modified Paths: -------------- trunk/mud4j-core/src/java/net/sf/mud4j/world/Direction.java Modified: trunk/mud4j-core/src/java/net/sf/mud4j/world/Direction.java =================================================================== --- trunk/mud4j-core/src/java/net/sf/mud4j/world/Direction.java 2006-12-24 01:36:22 UTC (rev 46) +++ trunk/mud4j-core/src/java/net/sf/mud4j/world/Direction.java 2006-12-24 17:33:29 UTC (rev 47) @@ -26,6 +26,10 @@ private String directionName; + /** + * Creates a direction with a name such as "north" or "south". + * @param directionName Name of the direction. + */ public Direction(String directionName) { this.directionName = directionName; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |