edu.umd.cs.findbugs.GlobalOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotbugs Show documentation
Show all versions of spotbugs Show documentation
SpotBugs: Because it's easy!
The newest version!
package edu.umd.cs.findbugs;
import javax.annotation.CheckForNull;
public interface GlobalOptions {
@CheckForNull
String getGlobalOption(String key);
@CheckForNull
Plugin getGlobalOptionSetter(String key);
}