Examples of toDottedClassName()


Examples of edu.umd.cs.findbugs.classfile.ClassDescriptor.toDottedClassName()

                        String aSig = e.getArgumentSignature();
                        char conversion = e.getConversion();
                        if ((conversion == 't' || conversion == 'T') && aSig.charAt(0) == 'L') {
                            ClassDescriptor argDescriptor = DescriptorFactory.createClassDescriptorFromFieldSignature(aSig);
                            assert argDescriptor != null : "sig started with L, should get descriptor";
                            String arg = argDescriptor.toDottedClassName();
                            try {
                                if (Hierarchy.isSubtype(arg,  java.util.Date.class.getName())
                                        || Hierarchy.isSubtype(arg,  java.util.Calendar.class.getName())) {
                                    return;
                                }
View Full Code Here

Examples of edu.umd.cs.findbugs.classfile.ClassDescriptor.toDottedClassName()

        Throwable cause = ex.getCause();
        if (cause instanceof ResourceNotFoundException) {
            String resourceName = ((ResourceNotFoundException) cause).getResourceName();
            if (resourceName != null) {
                ClassDescriptor classDesc = DescriptorFactory.createClassDescriptorFromResourceName(resourceName);
                return classDesc.toDottedClassName();
            }
        }

        if (ex.getMessage() == null) {
            return null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.