private void editCss(String className, String attribute, String value) {
if(!cssImpl.editRule("." + className, attribute, value))
cssImpl.addRule("." + className, "{" + attribute + " : " + value + "}");
}
private MenuItem getRightIndentMenuItem() {
return rightIndentMenuItem = rightIndentMenuItem != null ? rightIndentMenuItem : new MenuItem("<img src='images/right-indent.png' height=16 width=16'>"
, true, new Command(){
@Override
public void execute() {
final Element element = invokingElement;
final String finalClassName = className;