Examples of ComparableComparator


Examples of org.springframework.util.comparator.ComparableComparator

    }

    public void testComparator() {
        ComboBoxBinder binder = new ComboBoxBinder();
        binder.setSelectableItems(new Object[] { "2", "4", "1", "2", "3" });
        binder.setComparator(new ComparableComparator());
        ComboBoxBinding binding = (ComboBoxBinding) binder.bind(fm, "simpleProperty", Collections.EMPTY_MAP);
        ListModel bindingModel = binding.getBindingModel();
        assertEquals(5, bindingModel.getSize());
        assertEquals("1", bindingModel.getElementAt(0));
        assertEquals("2", bindingModel.getElementAt(1));
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.