Author: linus Date: 2010-10-26 12:17:36-0700 New Revision: 18811 Modified: trunk/src/argouml-core-model/src/org/argouml/model/UmlHelper.java
Log: Fixed a few warnings. Modified: trunk/src/argouml-core-model/src/org/argouml/model/UmlHelper.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-model/src/org/argouml/model/UmlHelper.java?view=diff&pathrev=18811&r1=18810&r2=18811 ============================================================================== --- trunk/src/argouml-core-model/src/org/argouml/model/UmlHelper.java (original) +++ trunk/src/argouml-core-model/src/org/argouml/model/UmlHelper.java 2010-10-26 12:17:36-0700 @@ -39,7 +39,6 @@ package org.argouml.model; import java.util.Collection; -import java.util.Enumeration; /** * The interface for the Helper for Uml.<p> @@ -48,6 +47,9 @@ */ public interface UmlHelper { + /** + * Direction of the movement. + */ public enum Direction { UP, DOWN, TOP, BOTTOM; } @@ -90,8 +92,9 @@ Object getDestination(Object relationShip); /** - * Returns true if a model element can be moved within its parent - * @param parent the parent model element + * Returns true if a model element can be moved within its parent. + * + * @return the parent model element * @param element the element to move */ boolean isMovable(Object element); ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2675812 To unsubscribe from this discussion, e-mail: [[email protected]].
