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