1 24 package org.ofbiz.minilang.method; 25 26 import org.w3c.dom.*; 27 import org.ofbiz.minilang.*; 28 29 36 public abstract class MethodString { 37 38 protected SimpleMethod simpleMethod; 39 40 public MethodString(Element element, SimpleMethod simpleMethod) { 41 this.simpleMethod = simpleMethod; 42 } 43 44 45 public abstract String getString(MethodContext methodContext); 46 } 47 | Popular Tags |