mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
test++
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
public class Bar implements IFoo, IBar {
|
||||
public String getText() {
|
||||
return "hello";
|
||||
}
|
||||
|
||||
public IBar getIBar() {
|
||||
return this;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public interface IBar {
|
||||
String getText();
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public interface IFoo {
|
||||
IBar getIBar();
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
public class Bar implements IFoo, IBar {
|
||||
public String getText() {
|
||||
return "hello";
|
||||
}
|
||||
|
||||
public IBar getIBar() {
|
||||
return this;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public interface IBar {
|
||||
String getText();
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
public interface IFoo {
|
||||
String <caret>getText();
|
||||
IBar getIBar();
|
||||
}
|
||||
Reference in New Issue
Block a user