}
protected void createInstances() {
title = new GenericLabel("Ambigous bindings\n" + ChatColor.GRAY + "The key you pressed has multiple bindings assigned.\n" + ChatColor.GRAY + "Please choose which action you want to summon.");
buttonCancel = new GenericButton("Cancel");
list = new GenericListWidget();
int i = 1;
for (AbstractBinding binding:bindings) {
list.addItem(new BindingItem(i, binding));
i++;