public boolean checkoptionsetting(String option_letter) {
Map map = info.getCommandLineOptionParser().getAlloptions();
if (map == null)
return false;
CommandLineOption option = (CommandLineOption) map.get(option_letter);
if (option == null)
return false;
String value = option.getOptionType();
if (value != null)
return true;
else
return false;