return s;
}
public void set(XObject input) {
if (input instanceof XRole) {
XRole role = (XRole) input;
name.setValue(role.getName());
description.setValue(translateDescription(role.getDescription()));
if (role != null && role.getName() != null && (role.getName().equals("ADMIN") ||
role.getName().equals("EDITOR") ||
role.getName().equals("VIEWER") ||
role.getName().equals("POWERUSER") ||
role.getName().equals("OWNER") ||
role.getName().equals("CREATOR") ||
role.getName().equals("PUBLISHER"))) {
name.setEnabled(false);
description.setEnabled(false);
} else {
name.setEnabled(true);
description.setEnabled(true);