From: Andreas Kohlbecker Date: Mon, 3 Feb 2014 13:59:44 +0000 (+0000) Subject: fixing #4012 (ClassCastException in User and Group Bulk Editor) by revering one line... X-Git-Tag: 3.6.0~819 X-Git-Url: https://dev.e-taxonomy.eu/gitweb/taxeditor.git/commitdiff_plain/6484eff8bd42dd3de2c6d19d54ea002b1e4736ac fixing #4012 (ClassCastException in User and Group Bulk Editor) by revering one line of commit r19946 - comment --- diff --git a/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java b/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java index 8829cc7db..0e4206463 100644 --- a/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java +++ b/eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/input/AbstractBulkEditorInput.java @@ -267,8 +267,12 @@ public abstract class AbstractBulkEditorInput 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();