This commit is contained in:
Dmitry Jemerov
2009-09-11 18:11:39 +04:00
parent e203e9c06e
commit cf01415fd6
17 changed files with 8 additions and 2 deletions
@@ -0,0 +1,9 @@
public class Bar implements IFoo, IBar {
public String getText() {
return "hello";
}
public IBar getIBar() {
return this;
}
}
@@ -0,0 +1,3 @@
public interface IBar {
String getText();
}
@@ -0,0 +1,3 @@
public interface IFoo {
IBar getIBar();
}
@@ -0,0 +1,9 @@
public class Bar implements IFoo, IBar {
public String getText() {
return "hello";
}
public IBar getIBar() {
return this;
}
}
@@ -0,0 +1,3 @@
public interface IBar {
String getText();
}
@@ -0,0 +1,4 @@
public interface IFoo {
String <caret>getText();
IBar getIBar();
}