Package hudson.plugins.analysis.graph

Examples of hudson.plugins.analysis.graph.NullGraph


        else {
            availableGraphs.add(new HealthGraph(new NullHealthDescriptor()));
        }
        availableGraphs.add(new DifferenceGraph());
        availableGraphs.add(new EmptyGraph());
        availableGraphs.add(new NullGraph());

        return availableGraphs;
    }
View Full Code Here


        this.width = width;
        this.height = height;
        this.dayCountString = dayCountString;

        configureGraph(new NullGraph());
    }
View Full Code Here

     */
    public Graph getWarningsGraph() {
        List<ResultAction<?>> results = getActions();
        BuildResultGraph graph;
        if (results.isEmpty()) {
            graph = new NullGraph();
        }
        else {
            graph = configuration.getGraphType();
        }
        return graph.getGraph(-1, configuration, getPluginName(), results);
View Full Code Here

TOP

Related Classes of hudson.plugins.analysis.graph.NullGraph

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.