suggest to pass several parameters in autopopup

This commit is contained in:
peter
2012-02-15 16:37:48 +01:00
parent ec5f0a171c
commit fe13245171
7 changed files with 41 additions and 8 deletions
@@ -0,0 +1,9 @@
import java.io.File;
class Zoo {
private Zoo delegate;
@Override
public void foo(String s, File file) {
delegate.foo(s, file);<caret>
}
}