use of com.sldeditor.ui.detail.vendor.geoserver.VendorOptionInterface in project sldeditor by robward-scisys.
the class VendorOptionRasterFactory method updateFieldDataManager.
/**
* Updates the field data manager.
*
* @param fieldConfigManager the field config manager
*/
public void updateFieldDataManager(GraphicPanelFieldManager fieldConfigManager) {
for (VendorOptionInterface vendorOption : vendorOptionList) {
if (vendorOption != null) {
PopulateDetailsInterface populateInterface = (PopulateDetailsInterface) vendorOption;
fieldConfigManager.add(populateInterface.getFieldDataManager());
}
}
}
use of com.sldeditor.ui.detail.vendor.geoserver.VendorOptionInterface in project sldeditor by robward-scisys.
the class VendorOptionFillFactory method getFieldDataManager.
/**
* Gets the field data manager.
*
* @param fieldConfigManager the field config manager
*/
public void getFieldDataManager(GraphicPanelFieldManager fieldConfigManager) {
for (VendorOptionInterface vendorOption : vendorOptionList) {
if (vendorOption != null) {
PopulateDetailsInterface populateInterface = (PopulateDetailsInterface) vendorOption;
fieldConfigManager.add(populateInterface.getFieldDataManager());
}
}
}
use of com.sldeditor.ui.detail.vendor.geoserver.VendorOptionInterface in project sldeditor by robward-scisys.
the class FieldConfigVendorOptionTest method testRevertToDefaultValue.
/**
* Test method for
* {@link com.sldeditor.ui.detail.config.FieldConfigVendorOption#revertToDefaultValue()}.
*/
@Test
public void testRevertToDefaultValue() {
List<VendorOptionInterface> veList = null;
boolean valueOnly = true;
FieldConfigVendorOption field = new FieldConfigVendorOption(new FieldConfigCommonData(Double.class, FieldIdEnum.NAME, "label", valueOnly), veList);
field.revertToDefaultValue();
field.createUI();
field.revertToDefaultValue();
}
use of com.sldeditor.ui.detail.vendor.geoserver.VendorOptionInterface 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.VendorOptionInterface 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