Package org.apache.myfaces.trinidad.util

Examples of org.apache.myfaces.trinidad.util.ListFromCollection$MakeList


  {
    TreeSet<Integer> tree = new TreeSet<Integer>();
    for (int i = 0; i < 250; i++)
      tree.add(new Integer(i));

    ListFromCollection lfc = new ListFromCollection();
    lfc.setSize(100);

    List<?> list = lfc.getList().get(tree);
    assertEquals(tree.size(), list.size());
    assertEquals(new Integer(5), list.get(5));
    assertEquals(new Integer(155), list.get(155));
    assertEquals(new Integer(0), list.get(0));
    assertEquals(new Integer(99), list.get(99));
View Full Code Here

TOP

Related Classes of org.apache.myfaces.trinidad.util.ListFromCollection$MakeList

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.