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