}
private void addMaxNodeWidthControl(final List<IPropertyControl> controls) {
mSetMaxNodeWidth = new BooleanProperty(StyleEditorPanel.SET_RESOURCE);
controls.add(mSetMaxNodeWidth);
mMaxNodeWidth = new NumberProperty(StyleEditorPanel.MAX_TEXT_WIDTH, 1, Integer.MAX_VALUE, 1);
controls.add(mMaxNodeWidth);
final MaxNodeWidthChangeListener listener = new MaxNodeWidthChangeListener(mSetMaxNodeWidth, mMaxNodeWidth);
mSetMaxNodeWidth.addPropertyChangeListener(listener);
mMaxNodeWidth.addPropertyChangeListener(listener);
mMaxNodeWidth.fireOnMouseClick();