mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 23:07:01 +07:00
24 lines
336 B
Java
24 lines
336 B
Java
import java.util.*;
|
|
|
|
|
|
public class TestIndex {
|
|
|
|
public void statMethod(PsiClass c) {
|
|
c.getMethods();
|
|
c.getMethods();
|
|
c.getMethods();
|
|
c.getMethods();
|
|
c.getMethods();
|
|
c.getMethods();
|
|
c.getMethods();
|
|
c.getMethods();
|
|
}
|
|
}
|
|
|
|
class PsiMethod {
|
|
}
|
|
|
|
interface PsiClass {
|
|
Collection<PsiMethod> getMethods();
|
|
}
|