diff dwtx/jface/viewers/CellEditor.d @ 90:7ffeace6c47f

Update 3.4M7 to 3.4
author Frank Benoit <benoit@tionex.de>
date Sun, 06 Jul 2008 23:30:07 +0200
parents 5df4896124c7
children
line wrap: on
line diff
--- a/dwtx/jface/viewers/CellEditor.d	Sun Jun 22 22:57:31 2008 +0200
+++ b/dwtx/jface/viewers/CellEditor.d	Sun Jul 06 23:30:07 2008 +0200
@@ -35,6 +35,8 @@
     /**
      * Struct-like layout data for cell editors, with reasonable defaults for
      * all fields.
+     *
+     * @noextend This class is not intended to be subclassed by clients.
      */
     public static class LayoutData {
         /**
@@ -56,11 +58,13 @@
         /**
          * Minimum height in pixels; by default the height is aligned to the
          * row-height
+         * @since 3.4
          */
         public int minimumHeight = DWT.DEFAULT;
 
         /**
          * The vertical alignment; <code>DWT.CENTER</code> by default.
+         * @since 3.4
          */
         public int verticalAlignment = DWT.CENTER;
     }
@@ -266,7 +270,7 @@
         Assert.isTrue(control is null);
         control = createControl(parent);
         // See 1GD5CA6: ITPUI:ALL - TaskView.setSelection does not work
-        // Control is created with getVisible()istrue by default.
+        // Control is created with getVisible()is true by default.
         // This causes composite.setFocus() to work incorrectly.
         // The cell editor's control grabs focus instead, even if it is not
         // active.
@@ -945,6 +949,7 @@
     /**
      * @param event
      *            deactivation event
+     * @since 3.4
      *
      */
     protected void deactivate(ColumnViewerEditorDeactivationEvent event) {
@@ -963,6 +968,7 @@
      * double click.
      *
      * @return the timeout or <code>0</code>
+     * @since 3.4
      */
     protected int getDoubleClickTimeout() {
         return Display.getCurrent().getDoubleClickTime();