summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t135/after/test.java
blob: c992fd8569bf25282d63f53e652d696d65cf99c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Test {
  private int foo, bar;
  
  public long getFoo() {
    return foo;
  }
  
  public void setFoo(int foo) {
    this.foo = foo;
  }
  
  public long getBar() {
    return bar;
  }
  
  public void setBar(int bar) {
    this.bar = bar;
  }
}