Package edu.umd.cs.findbugs.classfile

Examples of edu.umd.cs.findbugs.classfile.CheckedAnalysisException


            XMethod result = xClass.findMethod(name, sig, isStatic);
            if (result != null) {
                return result;
            }
            if (isStatic) {
                throw new CheckedAnalysisException();
            }
            ClassDescriptor superclassDescriptor = xClass.getSuperclassDescriptor();
            if (superclassDescriptor == null) {
                throw new CheckedAnalysisException();
            }
            xClass = cache.getClassAnalysis(XClass.class, superclassDescriptor);
        }

    }
View Full Code Here

TOP

Related Classes of edu.umd.cs.findbugs.classfile.CheckedAnalysisException

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.