use of com.sldeditor.ui.widgets.FieldPanel in project sldeditor by robward-scisys.
the class FieldConfigWKT method createUI.
/**
* Creates the ui.
*/
@Override
public void createUI() {
FieldPanel fieldPanel = createFieldPanel(0, "");
fieldPanel.setLayout(new BorderLayout());
wktPanel = new WKTDetails(this);
fieldPanel.add(wktPanel, BorderLayout.CENTER);
Dimension panelSize = wktPanel.getPanelSize();
fieldPanel.setPreferredSize(panelSize);
}
Aggregations