Package org.locationtech.udig.ui.AcceptLessTen

Examples of org.locationtech.udig.ui.AcceptLessTen.Data


    @Ignore
    @Test
    public void testPerformDropListButOnlySomeAreAcceptable() throws Exception {
        ArrayList<Data> data = new ArrayList<Data>();
        Data data1 = new Data(11);
        data.add(data1);
        Data data2 = new Data(1);
        data.add(data2);
        Data data3 = new Data(5);
        data.add(data3);

        doDrop(data, 2);
       
        assertEquals(2,done);
View Full Code Here

TOP

Related Classes of org.locationtech.udig.ui.AcceptLessTen.Data

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.