use of com.sldeditor.filter.v2.function.FilterConfigInterface in project sldeditor by robward-scisys.
the class FilterPanelv2 method populateFilter.
/**
* Populate filter.
*
* @param node the node
* @param filter the filter
*/
private void populateFilter(FilterNode node, Filter filter) {
FilterConfigInterface filterConfig = null;
if (filter != null) {
filterConfig = FilterManager.getInstance().getFilterConfig(filter);
}
node.setFilter(filter, filterConfig);
// This notifies the listeners and changes the GUI
model.reload();
displayResult();
}
Aggregations