}
private void addBgColorControl(final List<IPropertyControl> controls) {
mSetNodeBackgroundColor = new BooleanProperty(StyleEditorPanel.SET_RESOURCE);
controls.add(mSetNodeBackgroundColor);
mNodeBackgroundColor = new ColorProperty(StyleEditorPanel.NODE_BACKGROUND_COLOR, ResourceController
.getResourceController().getDefaultProperty(NODE_BACKGROUND_COLOR));
controls.add(mNodeBackgroundColor);
final BgColorChangeListener listener = new BgColorChangeListener(mSetNodeBackgroundColor, mNodeBackgroundColor);
mSetNodeBackgroundColor.addPropertyChangeListener(listener);
mNodeBackgroundColor.addPropertyChangeListener(listener);