ref #9004 rename isEmpty to checkEmpty to avoid recognition as bean property
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / description / DescriptionElementSource.java
index ce479b8286f58d55e373c62d5edfefb191b5b1c6..60363c17d7b3835e90e36d1248051eaeba9f4493 100644 (file)
@@ -167,13 +167,13 @@ public class DescriptionElementSource extends OriginalSourceBase<DescriptionElem
 // **************** EMPTY ************************/
 
     @Override
-    public boolean isEmpty(){
-       return this.isEmpty(false);
+    public boolean checkEmpty(){
+       return this.checkEmpty(false);
     }
 
     @Override
-    public boolean isEmpty(boolean excludeType){
-        return super.isEmpty(excludeType)
+    public boolean checkEmpty(boolean excludeType){
+        return super.checkEmpty(excludeType)
             && this.nameUsedInSource == null;
     }