use of com.sldeditor.ui.attribute.SubPanelUpdatedInterface in project sldeditor by robward-scisys.
the class PropertyPanel method createUI.
/**
* Creates the ui.
*/
private void createUI() {
setLayout(new BorderLayout());
dataSourceAttributePanel = new DataSourceAttributePanel(new SubPanelUpdatedInterface() {
@Override
public void updateSymbol() {
updateButtonState(true);
}
});
add(dataSourceAttributePanel, BorderLayout.NORTH);
add(createApplyRevertPanel(), BorderLayout.CENTER);
}
use of com.sldeditor.ui.attribute.SubPanelUpdatedInterface in project sldeditor by robward-scisys.
the class EnvironmentVariablePanel method createUI.
/**
* Creates the ui.
*/
private void createUI() {
setLayout(new BorderLayout());
dataSourceAttributePanel = new DataSourceAttributePanel(new SubPanelUpdatedInterface() {
@Override
public void updateSymbol() {
updateButtonState(true);
}
});
add(dataSourceAttributePanel, BorderLayout.NORTH);
add(createApplyRevertPanel(), BorderLayout.CENTER);
}
Aggregations