Home | History | Annotate | Download | only in tests
      1 package annotator.tests;
      2 
      3 public class IntCell {
      4   private int i;
      5 
      6   public IntCell(int in) {
      7     this.i = in;
      8   }
      9 
     10   public void set(int in) {
     11     this.i = in;
     12   }
     13 
     14   public int get() {
     15     return i;
     16   }
     17 }
     18