J2K: get/set-methods converted to properties (but lot of TODOs left)
This commit is contained in:
Vendored
+13
@@ -90,4 +90,17 @@ public class MethodReferenceHelperClass {
|
||||
public void memberFun0(JFunction0 f) {}
|
||||
public <T> void memberFun1(JFunction1<T> f) {}
|
||||
public <T, K> void memberFun2(JFunction2<T, K> f) {}
|
||||
}
|
||||
|
||||
public class JavaClassWithProperties {
|
||||
public int getValue1() { return 1; }
|
||||
|
||||
public int getValue2() { return 1; }
|
||||
public void setValue2(int value) { }
|
||||
|
||||
public int getValue3() { return 1; }
|
||||
public void setValue3(int value) { }
|
||||
|
||||
public int getValue4() { return 1; }
|
||||
public void setValue4(int value) { }
|
||||
}
|
||||
Reference in New Issue
Block a user