1 46 package groovy.lang; 47 48 49 50 57 public interface GroovyObject { 58 59 63 public Object invokeMethod(String name, Object args); 64 65 68 public Object getProperty(String property); 69 70 73 public void setProperty(String property, Object newValue); 74 75 78 public MetaClass getMetaClass(); 79 80 83 public void setMetaClass(MetaClass metaClass); 84 } 85 | Popular Tags |