fixing #4012 (ClassCastException in User and Group Bulk Editor) by revering one line...
authorAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Mon, 3 Feb 2014 13:59:44 +0000 (13:59 +0000)
committerAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Mon, 3 Feb 2014 13:59:44 +0000 (13:59 +0000)
eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java

index 8829cc7db7a10ba89c6360d041ef3c1d010e5c79..0e42064630d8ec3f9afadee97b52ed01b2c95b1f 100644 (file)
@@ -267,8 +267,12 @@ public abstract class AbstractBulkEditorInput<T extends ICdmBase> implements IEd
        }
 
        /**
+        * Returns a textual representation given object. The default implementation
+        * in the abstract base class returns the simple name of the class, this may
+        * be overwritten to something more specific in subclasses.
+        * 
         * @param entity
-        * @return
+        * @return a textual representation given object.
         */
        public String getTypeText(Object entity){
                return entity.getClass().getSimpleName();