Package fi.luomus.commons.containers

Examples of fi.luomus.commons.containers.SelectionImple.addOption()


    }
   
    public void test___localization_of_optgroups_2() {
      SelectionImple s = new SelectionImple("My Selection");
      s.addOption(new SelectionOptionImple("value", "Default desc", "My optgroup").setText("fi", "Suomi desc").setGroup("fi", "Minun optgrouppi"));
      s.addOption(new SelectionOptionImple("othervalue", "Other desc"));
     
      SelectionOption o = s.getOption("othervalue");
     
      assertEquals("", o.getGroup());
      assertEquals("", o.getGroup("en"));
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.