projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
find usages tests -> community
[idea/community.git]
/
java
/
java-tests
/
testData
/
psi
/
search
/
findUsages
/
siblingImplement
/
A.java
1
class A {
2
public void foo(Object o) {
3
}
4
5
interface I {
6
public void foo(Object o); //This should be consideredd implemented in A
7
}
8
9
}
10
11
class B extends A implements A.I {
12
}