JAL-1807 Bob's JalviewJS prototype first commit
[jalviewjs.git] / src / jalview / math / AlignmentDimension.java
1 package jalview.math;
2
3 public class AlignmentDimension
4 {
5   private int width;
6
7   private int height;
8
9   public AlignmentDimension(int width, int height)
10   {
11     this.width = width;
12     this.height = height;
13   }
14
15   public int getWidth()
16   {
17     return width;
18   }
19
20   public void setWidth(int width)
21   {
22     this.width = width;
23   }
24
25   public int getHeight()
26   {
27     return height;
28   }
29
30   public void setHeight(int height)
31   {
32     this.height = height;
33   }
34
35 }