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
@@ -0,0 +1,6 @@
class JavaClass {
public static void run(Runnable r1, Runnable r2) {
r1.run();
r2.run();
}
}