/***********************************************************************************
* METHODS
**********************************************************************************/
public static RibbonElementPriority getPriority(String attr) {
RibbonElementPriority prio = RibbonElementPriority.MEDIUM;
if("top".equals(attr.trim().toLowerCase())) {
prio = RibbonElementPriority.TOP;
}
else if("low".equals(attr.trim().toLowerCase())) {
prio = RibbonElementPriority.LOW;