use of com.sldeditor.ui.detail.vendor.geoserver.text.VendorOptionTextFactory in project sldeditor by robward-scisys.
the class TextSymbolizerDetails method createVendorOptionPanel.
/**
* Creates the vendor option panel.
*
* @return the detail panel
*/
private void createVendorOptionPanel() {
vendorOptionTextFactory = new VendorOptionTextFactory(getClass());
List<VendorOptionInterface> veList = vendorOptionTextFactory.getVendorOptionList();
if (veList != null) {
for (VendorOptionInterface extension : veList) {
extension.setParentPanel(this);
}
}
}
Aggregations