use of com.sldeditor.ui.detail.vendor.geoserver.fill.VendorOptionFillFactory in project sldeditor by robward-scisys.
the class PointFillDetails method createVendorOptionPanel.
/**
* Creates the vendor option panel.
*
* @return the detail panel
*/
private void createVendorOptionPanel() {
vendorOptionFillFactory = new VendorOptionFillFactory(getPanelId());
List<VendorOptionInterface> voList = vendorOptionFillFactory.getVendorOptionList();
if (voList != null) {
for (VendorOptionInterface vendorOption : voList) {
vendorOption.setParentPanel(this);
}
}
}
use of com.sldeditor.ui.detail.vendor.geoserver.fill.VendorOptionFillFactory in project sldeditor by robward-scisys.
the class PolygonFillDetails method createVendorOptionPanel.
/**
* Creates the vendor option panel.
*
* @return the detail panel
*/
private void createVendorOptionPanel() {
vendorOptionFillFactory = new VendorOptionFillFactory(getPanelId());
List<VendorOptionInterface> voList = vendorOptionFillFactory.getVendorOptionList();
if (voList != null) {
for (VendorOptionInterface vendorOption : voList) {
vendorOption.setParentPanel(this);
}
}
}
Aggregations