//Now we go to VisualAction and grab a list of the options
//that we can set
optionsDialogValues = new LinkedList();
Iterator optionIter = AvroraGui.instance.getOptionList().iterator();
Option currentOption;
while (optionIter.hasNext()) {
currentOption = (Option) optionIter.next();
//NOTE: YOU COULD DETECT SPECIAL CASE HERE (e.g. if(option.getName().equals("MY SPECIAL OPTION"));
belowBannerPanel.add(addOption(currentOption));
}