本文整理匯總了Java中org.eclipse.jdt.core.IType.newSupertypeHierarchy方法的典型用法代碼示例。如果您正苦於以下問題:Java IType.newSupertypeHierarchy方法的具體用法?Java IType.newSupertypeHierarchy怎麽用?Java IType.newSupertypeHierarchy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.jdt.core.IType
的用法示例。
在下文中一共展示了IType.newSupertypeHierarchy方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: parseKasper5DtoFields
import org.eclipse.jdt.core.IType; //導入方法依賴的package包/類
public static List<DtoField> parseKasper5DtoFields(IType type) {
List<DtoField> fields = new ArrayList<>();
try {
/* Extraire le type parent */
ITypeHierarchy hierarchy = type.newSupertypeHierarchy(null);
IType superclass = hierarchy.getSuperclass(type);
for (IMethod method : superclass.getMethods()) {
parseKasper5DtoField(method, fields);
}
} catch (JavaModelException e) {
ErrorUtils.handle(e);
}
return fields;
}
示例2: parseKasper3PersistedDtoFields
import org.eclipse.jdt.core.IType; //導入方法依賴的package包/類
private static void parseKasper3PersistedDtoFields(IType type, List<DtoField> fields) throws JavaModelException {
/* Chercher les fields sur le type directement. */
parseKasper3DtoFields(type.getCompilationUnit(), fields);
if (fields.isEmpty()) {
/* Chercher les fields sur le parent. */
ITypeHierarchy hierarchy = type.newSupertypeHierarchy(null);
IType superclass = hierarchy.getSuperclass(type);
parseKasper3DtoFields(superclass.getCompilationUnit(), fields);
}
}
示例3: parseKasper3BeanFields
import org.eclipse.jdt.core.IType; //導入方法依賴的package包/類
private static void parseKasper3BeanFields(IType type, List<DtoField> fields) throws JavaModelException {
/* Extraire le type parent Abstract. */
ITypeHierarchy hierarchy = type.newSupertypeHierarchy(null);
IType superclass = hierarchy.getSuperclass(type);
for (IMethod method : superclass.getMethods()) {
DtoField field = parseKasper3BeanFieldGetter(method);
if (field != null) {
fields.add(field);
}
}
}