]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.cms/src/org/argeo/api/cms/ux/Cms2DSize.java
Use Argeo Build from testing
[lgpl/argeo-commons.git] / org.argeo.api.cms / src / org / argeo / api / cms / ux / Cms2DSize.java
1 package org.argeo.api.cms.ux;
2
3 /** A 2D size. */
4 public class Cms2DSize {
5 private Integer width;
6 private Integer height;
7
8 public Cms2DSize() {
9 }
10
11 public Cms2DSize(Integer width, Integer height) {
12 super();
13 this.width = width;
14 this.height = height;
15 }
16
17 public Integer getWidth() {
18 return width;
19 }
20
21 public void setWidth(Integer width) {
22 this.width = width;
23 }
24
25 public Integer getHeight() {
26 return height;
27 }
28
29 public void setHeight(Integer height) {
30 this.height = height;
31 }
32
33 @Override
34 public String toString() {
35 return Cms2DSize.class.getSimpleName() + "[" + width + "," + height + "]";
36 }
37
38 }