Package com.smartcodeltd.jenkinsci.plugins.buildmonitor.order

Examples of com.smartcodeltd.jenkinsci.plugins.buildmonitor.order.ByName


    }

    // defensive coding to avoid issues when Jenkins instantiates the plugin without populating its fields
    // https://github.com/jan-molak/jenkins-build-monitor-plugin/issues/43
    private Comparator<AbstractProject> currentOrderOrDefault() {
        return order == null ? new ByName() : order;
    }
View Full Code Here

TOP

Related Classes of com.smartcodeltd.jenkinsci.plugins.buildmonitor.order.ByName

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.