]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed source formatting and Javadoc.
authorJohn Alhroos <john.ahlroos@itmill.com>
Fri, 19 Aug 2011 13:33:07 +0000 (13:33 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Fri, 19 Aug 2011 13:33:07 +0000 (13:33 +0000)
svn changeset:20523/svn branch:6.7

src/com/vaadin/ui/AbstractSelect.java

index ba1821a53c75ec7150e9e4d641d294cc8fcb4823..59e173b536cbdbe58f8c92e7e8af59178d1339b3 100644 (file)
@@ -1,5 +1,5 @@
-/* 
-@ITMillApache2LicenseForJavaFiles@
+/*
+ * @ITMillApache2LicenseForJavaFiles@
  */
 
 package com.vaadin.ui;
@@ -1932,22 +1932,27 @@ public abstract class AbstractSelect extends AbstractField implements
     }
 
     /**
-     * Implement this interface and pass it to Tree.setCellStyleGenerator or Table.setCellStyleGenerator to
-     * generate mouse over descriptions ("tooltips")  for the rows and cells in Table or for the items in Tree.
+     * Implement this interface and pass it to Tree.setItemDescriptionGenerator
+     * or Table.setItemDescriptionGenerator to generate mouse over descriptions
+     * ("tooltips") for the rows and cells in Table or for the items in Tree.
      */
     public interface ItemDescriptionGenerator extends Serializable {
-       
-       /**
-        * Called by Table when a cell (and row) is painted or a item is painted in Tree
-        * @param source
-        *              The source of the generator, the Tree or Table the generator is attached to
-        * @param itemId
-        *              The itemId of the painted cell
-        * @param propertyId
-        *              The propertyId of the cell, null when getting row description
-        * @return
-        *              The description or "tooltip" of the item. 
-        */
-       public String generateDescription(Component source, Object itemId, Object propertyId);
-    }        
+
+        /**
+         * Called by Table when a cell (and row) is painted or a item is painted
+         * in Tree
+         * 
+         * @param source
+         *            The source of the generator, the Tree or Table the
+         *            generator is attached to
+         * @param itemId
+         *            The itemId of the painted cell
+         * @param propertyId
+         *            The propertyId of the cell, null when getting row
+         *            description
+         * @return The description or "tooltip" of the item.
+         */
+        public String generateDescription(Component source, Object itemId,
+                Object propertyId);
+    }
 }