1 35 package org.codehaus.groovy.runtime; 36 37 import groovy.lang.MetaMethod; 38 39 45 46 public class TransformMetaMethod extends MetaMethod { 47 48 private MetaMethod metaMethod; 49 50 public TransformMetaMethod(MetaMethod metaMethod) { 51 super(metaMethod); 52 this.metaMethod = metaMethod; 53 } 54 55 public Object invoke(Object object, Object [] arguments) throws Exception { 56 return metaMethod.invoke(object, arguments); 57 } 58 } 59 | Popular Tags |