use of com.sldeditor.rendertransformation.RenderTransformationDialog in project sldeditor by robward-scisys.
the class FieldConfigTransformation method showTransformationDialog.
/**
* Show transformation dialog.
*
* @param existingProcessFunction the existing process function
* @return the process function
*/
private ProcessFunction showTransformationDialog(ProcessFunction existingProcessFunction) {
ProcessFunction processFunction = null;
RenderTransformationDialog dlg = new RenderTransformationDialog(GeoServerConnectionManager.getInstance());
if (dlg.showDialog(existingProcessFunction)) {
processFunction = dlg.getTransformationProcessFunction();
}
return processFunction;
}
Aggregations