Revision: 128
http://mud4j.svn.sourceforge.net/mud4j/?rev=128&view=rev
Author: mpurland
Date: 2007-06-02 18:26:15 -0700 (Sat, 02 Jun 2007)
Log Message:
-----------
Fix javadoc, and organize imports.
Modified Paths:
--------------
trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java
Modified: trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java
===================================================================
--- trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java 2007-06-03 01:25:14 UTC (rev 127)
+++ trunk/mud4j-core/src/java/net/sf/mud4j/world/area/AbstractArea.java 2007-06-03 01:26:15 UTC (rev 128)
@@ -16,7 +16,6 @@
package net.sf.mud4j.world.area;
-import java.util.Collection;
import java.util.List;
import net.sf.mud4j.character.Character;
@@ -33,6 +32,11 @@
// Name of the area
private String areaName;
+ /**
+ * Constructs a new area with the specified area name.
+ *
+ * @param areaName Name of the area.
+ */
public AbstractArea(String areaName) {
this.areaName = areaName;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|