Search in sources :

Example 1 with VendorOptionTextFactory

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);
        }
    }
}
Also used : VendorOptionTextFactory(com.sldeditor.ui.detail.vendor.geoserver.text.VendorOptionTextFactory) VendorOptionInterface(com.sldeditor.ui.detail.vendor.geoserver.VendorOptionInterface)

Aggregations

VendorOptionInterface (com.sldeditor.ui.detail.vendor.geoserver.VendorOptionInterface)1 VendorOptionTextFactory (com.sldeditor.ui.detail.vendor.geoserver.text.VendorOptionTextFactory)1