Processor processor = ProcessorManager.getInstance().getProcessor((URI)processorUri);
Value processorParameters = (Value)columnMap.get(PARAMETERS);
if ( processorParameters instanceof MapValue ) {
columnParameters.putAll(((MapValue)processorParameters).getMap());
}
Result processorResult = ProcessorManager.process(processor, columnParameters, context);
String resultKey = columnMap.get(RESULT).toString();
Value resultEntry = (Value)processorResult.getResultEntries().get(resultKey);
if ( resultEntry instanceof PrintableValue ) {
if ( replaceColumn ) {
((PrintableValue)resultEntry).print(columnsBuffer);
} else {
StringBuffer resultBuffer = new StringBuffer();