Package jweblite.data

Examples of jweblite.data.MultiValueLinkedHashMap


   * Default constructor.
   */
  public HelloChainedComboBox() {
    super();
    // map1
    this.map1 = new MultiValueLinkedHashMap();
    this.map1.put("Choose one...", null);
    this.map1.put("color", "red");
    this.map1.put("color", "green");
    this.map1.put("color", "black");
    this.map1.put("car", "AUDI");
    this.map1.put("car", "BMW");
    this.map1.put("car", "FORD");
    // map2
    this.map2 = new MultiValueLinkedHashMap();
    for (Object map1ValueObj : this.map1.values()) {
      if (map1ValueObj == null) {
        continue;
      }
      String map1Value = (String) map1ValueObj;
View Full Code Here

TOP

Related Classes of jweblite.data.MultiValueLinkedHashMap

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.