| 1 12 package org.openbravo.xmlEngine; 13 14 import java.text.DecimalFormat ; 15 16 import org.apache.log4j.Logger ; 17 18 class FunctionEqualTemplate extends FunctionTemplate { 19 20 static Logger log4jFunctionEqualTemplate = Logger.getLogger(FunctionEqualTemplate.class); 21 22 public FunctionEqualTemplate(String fieldName, DecimalFormat formatOutput, DecimalFormat formatSimple, 23 DataTemplate dataTemplate, XmlComponentTemplate arg1) { 24 super(fieldName, formatOutput, formatSimple, dataTemplate, arg1, null); 25 } 26 27 public FunctionValue createFunctionValue(XmlDocument xmlDocument) { 28 FunctionValue functionValue = searchFunction(xmlDocument); 29 if (functionValue == null) { 30 log4jFunctionEqualTemplate.info("New FunctionEqualValue"); 31 functionValue = new FunctionEqualValue(this, xmlDocument); 32 } 33 return functionValue; 34 } 35 36 } 37 | Popular Tags |