本文整理汇总了Java中org.eclipse.jdt.core.IJavaElement.isStructureKnown方法的典型用法代码示例。如果您正苦于以下问题:Java IJavaElement.isStructureKnown方法的具体用法?Java IJavaElement.isStructureKnown怎么用?Java IJavaElement.isStructureKnown使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jdt.core.IJavaElement
的用法示例。
在下文中一共展示了IJavaElement.isStructureKnown方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isAvailable
import org.eclipse.jdt.core.IJavaElement; //导入方法依赖的package包/类
private static boolean isAvailable(IJavaElement javaElement) throws JavaModelException {
if (javaElement == null) {
return false;
}
if (!javaElement.exists()) {
return false;
}
if (javaElement.isReadOnly()) {
return false;
}
// work around for https://bugs.eclipse.org/bugs/show_bug.cgi?id=48422
// the Java project is now cheating regarding its children so we shouldn't
// call isStructureKnown if the project isn't open.
// see bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=52474
if (!(javaElement instanceof IJavaProject) && !(javaElement instanceof ILocalVariable) && !javaElement.isStructureKnown()) {
return false;
}
if (javaElement instanceof IMember && ((IMember) javaElement).isBinary()) {
return false;
}
return true;
}