我有一个代码示例,它浏览我的工作区并选择每个类中的每个方法。我的意图是打印出该方法的绝对路径,但我不知道该怎么做。
类似的东西method.getAbsolutePath()
不存在。
我的代码:
IPackageFragment[] packages = javaProject.getPackageFragments();
for (IPackageFragment mypackage : packages) {
for (ICompilationUnit unit : mypackage.getCompilationUnits()) {
IType[] allTypes = unit.getAllTypes();
for (IType type : allTypes) {
IMethod[] methods = type.getMethods();
for (IMethod method : methods) {
//System.out.println(MyMethodPath);
//here is want to print the path
}
}
}
}
有人可以帮忙吗?