All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cflint.Bugs Maven / Gradle / Ivy

Go to download

A static code analysis tool for ColdFusion (in the spirit of FindBugs and Lint). With CFLint, you are able to analyze your ColdFusion code base for code violations.

There is a newer version: 1.5.0
Show newest version
package com.cflint;

/**
 * A few commonly use constants used when referring to bugs.
 */
public class Bugs {
    /**
     * Count.
     */
    public static final String COUNT = "count";

    /**
     * Code.
     */
    public static final String CODE = "code";
    
    /**
     * ID.
     */
    public static final String ID = "id";

    /**
     * Issue.
     */
    public static final String ISSUE = "issue";

    /**
     * Severity.
     */
    public static final String SEVERITY = "severity";

    private Bugs() {
          throw new IllegalStateException("Bugs utility class");
        }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy