* 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;