1 24 package org.ofbiz.minilang.method; 25 26 import org.w3c.dom.*; 27 import org.ofbiz.minilang.*; 28 29 36 public abstract class MethodObject { 37 38 protected SimpleMethod simpleMethod; 39 40 public MethodObject(Element element, SimpleMethod simpleMethod) { 41 this.simpleMethod = simpleMethod; 42 } 43 44 45 public abstract String getTypeName(); 46 47 48 public abstract Class getTypeClass(ClassLoader loader); 49 50 51 public abstract Object getObject(MethodContext methodContext); 52 } 53 | Popular Tags |