else if(words[i].toLowerCase().equals("private"))
attribute.setAccessModifier(OORexxAccessModifier.PRIVATE);
else
try{
if(Arrays.asList(OORexxDirectiveOption.values()).contains(OORexxDirectiveOption.valueOf(words[i].toUpperCase())))
attribute.addOption(OORexxDirectiveOption.valueOf(words[i].toUpperCase()));
}catch(IllegalArgumentException ex){
}
}