mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 10:51:25 +07:00
javac ast refs index
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
|
||||
public String getMyName() {
|
||||
return "Bar...";
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class Baz {
|
||||
public void main(FooImpl f) {
|
||||
System.out.println(f.getMyName());
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public interface Foo {
|
||||
|
||||
String getM<caret>yName();
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class FooImpl implements Foo {
|
||||
|
||||
public String getMyName() {
|
||||
return "FooImpl is my name";
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user