Supported non-literal arguments for SAM adapters.

This commit is contained in:
Evgeny Gerashchenko
2013-06-13 20:16:47 +04:00
parent 2e2061d9b6
commit ee9fcff9ca
10 changed files with 90 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
class JavaClass {
private Runnable r;
public JavaClass(Runnable r) {
this.r = r;
}
public void run() {
r.run();
}
}