1 package au.gov.amsa.geo.projection;
2
3 public class ProjectorTarget {
4
5 private int width;
6 private int height;
7
8 public ProjectorTarget(int width, int height) {
9 super();
10 this.width = width;
11 this.height = height;
12 }
13
14 public int getWidth() {
15 return width;
16 }
17
18 public void setWidth(int width) {
19 this.width = width;
20 }
21
22 public int getHeight() {
23 return height;
24 }
25
26 public void setHeight(int height) {
27 this.height = height;
28 }
29
30 @Override
31 public String toString() {
32 return "ProjectorTarget [width=" + width + ", height=" + height + "]";
33 }
34 }