Examples of NodeEntryImpl


Examples of com.dtolabs.rundeck.core.common.NodeEntryImpl

* @author Greg Schueler <a href="mailto:greg@dtosolutions.com">greg@dtosolutions.com</a>
*/
public class TestINodeEntryComparator extends TestCase {

    public void testCompareDefaultProperty() throws Exception {
        final NodeEntryImpl node1 = new NodeEntryImpl("abc");
        final NodeEntryImpl node2 = new NodeEntryImpl("def");
        final NodeEntryImpl node3 = new NodeEntryImpl("ghi");
        {//ascending
            final INodeEntryComparator comparator = new INodeEntryComparator(null);
            final TreeSet<INodeEntry> sorted = new TreeSet<INodeEntry>(comparator);
            sorted.add(node1);
            sorted.add(node2);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.