ActionEvent ae = new ActionEvent(jep, ActionEvent.ACTION_PERFORMED,
toString(StyleConstants.ALIGN_CENTER));
action.actionPerformed(ae);
checkAttribute(dot, StyleConstants.Alignment, StyleConstants.ALIGN_CENTER);
ae = new ActionEvent(jep, ActionEvent.ACTION_PERFORMED, null);
action.actionPerformed(ae);
checkAttribute(dot, StyleConstants.Alignment, StyleConstants.ALIGN_JUSTIFIED);
ae = new ActionEvent(jep, ActionEvent.ACTION_PERFORMED, "aa");
action.actionPerformed(ae);
checkAttribute(dot, StyleConstants.Alignment, StyleConstants.ALIGN_JUSTIFIED);
ae = new ActionEvent(jep, ActionEvent.ACTION_PERFORMED, "");