本文整理汇总了Java中org.eclipse.jdt.core.IMethod.isMainMethod方法的典型用法代码示例。如果您正苦于以下问题:Java IMethod.isMainMethod方法的具体用法?Java IMethod.isMainMethod怎么用?Java IMethod.isMainMethod使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jdt.core.IMethod
的用法示例。
在下文中一共展示了IMethod.isMainMethod方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addMethodsToClass
import org.eclipse.jdt.core.IMethod; //导入方法依赖的package包/类
private void addMethodsToClass(IMethod iMethod) throws JavaModelException {
if (iMethod.isConstructor() || iMethod.isMainMethod() || isMethodDepricated(iMethod)) {
return;
} else {
if (Flags.isPublic(iMethod.getFlags()) && Flags.isStatic(iMethod.getFlags())) {
if (StringUtils.isBlank(iMethod.getSource())) {
methodList.add(new MethodDetails(iMethod,cName, false));
} else
methodList.add(new MethodDetails(iMethod,cName, true));
}
}
}
示例2: findReferences
import org.eclipse.jdt.core.IMethod; //导入方法依赖的package包/类
protected List<CodeReference> findReferences(IType type) throws CoreException {
List<CodeReference> references = new ArrayList<>();
for (IMethod method : type.getMethods()) {
if (!method.isMainMethod() && !method.isConstructor() && !method.isLambdaMethod()) {
references.addAll(findReferences(method));
}
}
for (IField field : type.getFields()) {
references.addAll(findReferences(field));
}
return references;
}