suggest several parameters when delegating

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