Package edu.umd.cs.findbugs

Examples of edu.umd.cs.findbugs.BugCategory


        }
        StringBuilder sb = new StringBuilder("<b>Pattern</b>: ");
        sb.append(pattern.getType());
        sb.append("\n<br><b>Type</b>: ").append(pattern.getAbbrev()).append(", <b>Category</b>: ");
        sb.append(pattern.getCategory());
        BugCategory category = DetectorFactoryCollection.instance().getBugCategory(pattern.getCategory());
        if(category != null) {
            sb.append(" (");
            sb.append(category.getShortDescription());
            sb.append(")");
        }
        return sb.toString();
    }
View Full Code Here

TOP

Related Classes of edu.umd.cs.findbugs.BugCategory

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.