JAL-1807 update
[jalviewjs.git] / src / javajs / awt / Dimension.java
1 package javajs.awt;
2
3 public class Dimension {
4
5   public int width;
6   public int height;
7
8   public Dimension(int w, int h) {
9     set(w, h);
10   }
11
12   public Dimension set(int w, int h) {
13     width = w;
14     height = h;
15     return this;
16   }
17
18 }