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