[mud4j-commit] SF.net SVN: mud4j: [139] trunk/mud4j-core/src/java/net/sf/mud4j/effect/ Effectable.j
Status: Pre-Alpha
Brought to you by:
mpurland
|
From: <mpu...@us...> - 2007-06-14 03:29:59
|
Revision: 139
http://mud4j.svn.sourceforge.net/mud4j/?rev=139&view=rev
Author: mpurland
Date: 2007-06-13 20:29:56 -0700 (Wed, 13 Jun 2007)
Log Message:
-----------
Fix the javadoc and format.
Modified Paths:
--------------
trunk/mud4j-core/src/java/net/sf/mud4j/effect/Effectable.java
Modified: trunk/mud4j-core/src/java/net/sf/mud4j/effect/Effectable.java
===================================================================
--- trunk/mud4j-core/src/java/net/sf/mud4j/effect/Effectable.java 2007-06-14 03:28:41 UTC (rev 138)
+++ trunk/mud4j-core/src/java/net/sf/mud4j/effect/Effectable.java 2007-06-14 03:29:56 UTC (rev 139)
@@ -16,25 +16,25 @@
package net.sf.mud4j.effect;
-import java.util.List;
-
/**
- * Provide an interface for objects to handle effects by providing
- * a {@link EffectBehavior}.
+ * Provide an interface for objects to handle effects by providing a
+ * {@link EffectBehavior}.
*
* @author Matthew Purland
*/
public interface Effectable {
-
+
/**
* Get effect behavior to handle effects.
*
* @return Returns the effect behavior.
*/
public EffectBehavior getEffectBehavior();
-
+
/**
* Set effect behavior on the effectable object.
+ *
+ * @param effectBehavior The effect behavior
*/
public void setEffectBehavior(EffectBehavior effectBehavior);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|