Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[gef-dev] Patch to javadocs of AlignmentAction.java

Hi everybody,

the attached patch updates the javadocs of the constructor
of org.eclipse.gef.ui.actions.AlignmentAction.

Changed: Suggest using int PositionConstants instead of String
GEFActionConstants to match constructor's signature.

Greetings,
Elias.

PS: Please excuse me if this is the wrong list for sending patches.


---
Elias Volanakis (Graduate Student)
Wilhelm-Schickard-Institute for Computer Science
University of Tuebingen
Sand 14 / Zi 023, 72076 Tuebingen, Germany
Index: AlignmentAction.java
===================================================================
retrieving revision 1.13
diff -u -r1.13 AlignmentAction.java
--- AlignmentAction.java	19 Sep 2003 19:17:27 -0000	1.13
+++ AlignmentAction.java	2 Apr 2004 17:12:27 -0000
@@ -79,12 +79,12 @@
  * Constructs an AlignmentAction with the given part and alignment ID.  The alignment ID
  * must by one of:
  * <UL>
- *   <LI>GEFActionConstants.ALIGN_LEFT
- *   <LI>GEFActionConstants.ALIGN_RIGHT
- *   <LI>GEFActionConstants.ALIGN_CENTER
- *   <LI>GEFActionConstants.ALIGN_TOP
- *   <LI>GEFActionConstants.ALIGN_BOTTOM
- *   <LI>GEFActionConstants.ALIGN_MIDDLE
+ *   <LI>PositionConstants.LEFT
+ *   <LI>PositionConstants.RIGHT
+ *   <LI>PositionConstants.CENTER
+ *   <LI>PositionConstants.TOP
+ *   <LI>PositionConstants.BOTTOM
+ *   <LI>PositionConstants.MIDDLE
  * </UL>  
  * @param part the workbench part used to obtain context
  * @param align the aligment ID.

Back to the top