Package edu.umd.cs.findbugs.PluginLoader

Examples of edu.umd.cs.findbugs.PluginLoader.Summary


     *         not considered as a valid plugin.
     */
    @Nonnull
    public ValidationStatus validate(String path) {
        File file = new File(path);
        Summary sum = null;
        try {
            sum = PluginLoader.validate(file);
        } catch (IllegalArgumentException e) {
            if(FindbugsPlugin.getDefault().isDebugging()) {
                e.printStackTrace();
View Full Code Here


        public static final String UNKNOWN_VALUE = "?";
        private final Summary sum;

        public ValidationStatus(int severity, String message, Summary sum, Throwable t) {
            super(severity, FindbugsPlugin.PLUGIN_ID, message, t);
            this.sum = sum == null ? new Summary(UNKNOWN_VALUE, UNKNOWN_VALUE, UNKNOWN_VALUE, UNKNOWN_VALUE) : sum;
        }
View Full Code Here

TOP

Related Classes of edu.umd.cs.findbugs.PluginLoader.Summary

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.