remoting/ide/usages/src/org/netbeans/modules/jackpot30/ide/usages/RemoteUsages.java [298:308]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        private List<TypeElement> superTypes(CompilationInfo info, TypeElement type) {
            List<TypeElement> superTypes = new ArrayList<TypeElement>();

            for (TypeMirror sup : info.getTypes().directSupertypes(type.asType())) {
                if (sup.getKind() == TypeKind.DECLARED) {
                    superTypes.add((TypeElement) ((DeclaredType) sup).asElement());
                }
            }

            return superTypes;
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



remoting/server/web/web.ui/src/org/netbeans/modules/jackpot30/backend/ui/UI.java [809:819]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static List<TypeElement> superTypes(CompilationInfo info, TypeElement type) {
        List<TypeElement> superTypes = new ArrayList<TypeElement>();

        for (TypeMirror sup : info.getTypes().directSupertypes(type.asType())) {
            if (sup.getKind() == TypeKind.DECLARED) {
                superTypes.add((TypeElement) ((DeclaredType) sup).asElement());
            }
        }

        return superTypes;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



