Improve ACR
[lgpl/argeo-commons.git] / org.argeo.api.cms / src / org / argeo / api / cms / ux / Cms2DSize.java
index 9667e8352f977576065a6ddbb7f18f6164498cc9..1ec753a187770d4d6f67c02476754dadc6a05a9e 100644 (file)
@@ -6,7 +6,6 @@ public class Cms2DSize {
        private Integer height;
 
        public Cms2DSize() {
-
        }
 
        public Cms2DSize(Integer width, Integer height) {
@@ -31,4 +30,9 @@ public class Cms2DSize {
                this.height = height;
        }
 
+       @Override
+       public String toString() {
+               return Cms2DSize.class.getSimpleName() + "[" + width + "," + height + "]";
+       }
+
 }