[mud4j-commit] SF.net SVN: mud4j: [77] trunk/mud4j-core/src/java/net/sf/mud4j/world/item/ Container
Status: Pre-Alpha
Brought to you by:
mpurland
From: <mpu...@us...> - 2006-12-30 04:56:51
|
Revision: 77 http://mud4j.svn.sourceforge.net/mud4j/?rev=77&view=rev Author: mpurland Date: 2006-12-29 20:56:49 -0800 (Fri, 29 Dec 2006) Log Message: ----------- Update javadoc comments. Modified Paths: -------------- trunk/mud4j-core/src/java/net/sf/mud4j/world/item/ContainerItemType.java Modified: trunk/mud4j-core/src/java/net/sf/mud4j/world/item/ContainerItemType.java =================================================================== --- trunk/mud4j-core/src/java/net/sf/mud4j/world/item/ContainerItemType.java 2006-12-30 04:55:10 UTC (rev 76) +++ trunk/mud4j-core/src/java/net/sf/mud4j/world/item/ContainerItemType.java 2006-12-30 04:56:49 UTC (rev 77) @@ -19,8 +19,7 @@ import java.util.List; /** - * Container item type for managing a collection of items within - * it. + * Item type for providing behavior to a container item to contain other items. * * @author Matthew Purland */ @@ -62,6 +61,11 @@ return initialCapacity; } + /** + * Get total size of the container. + * + * @return Return size of the container. + */ private int getSize() { return itemList.size(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |