Package com.sun.mirror.type

Examples of com.sun.mirror.type.ClassType


    protected void checkInterface(InterfaceDeclaration id, P param) {
        checkSuperInterfaces(id,param);
    }

    protected void checkClass(ClassDeclaration cd, P param) {
        ClassType sc = cd.getSuperclass();
        if(sc!=null)
            check(sc.getDeclaration(),param);

        checkSuperInterfaces(cd,param);
    }
View Full Code Here

TOP

Related Classes of com.sun.mirror.type.ClassType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.