handle parameters in implement members

This commit is contained in:
Dmitry Jemerov
2011-11-04 18:10:11 +01:00
parent 8f15eea9c5
commit 7714e850b9
6 changed files with 44 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
package foo;
interface Intf {
void fooBar(int i, String[] s, Object foo);
}