![JAR search and dependency download from the Maven repository](/logo.png)
hudson.plugins.analysis.graph.NullGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analysis-core Show documentation
Show all versions of analysis-core Show documentation
This plug-in provides utilities for the static code analysis plug-ins.
The newest version!
package hudson.plugins.analysis.graph;
/**
* Empty graph. Null object: this graph does not render anything. Additionally,
* there is no enable graph link presented in the UI.
*
* @author Ulli Hafner
*/
public class NullGraph extends EmptyGraph {
/** {@inheritDoc} */
@Override
public String getId() {
return "NULL";
}
/** {@inheritDoc} */
@Override
public boolean isDeactivated() {
return true;
}
/** {@inheritDoc} */
@Override
public boolean isSelectable() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy