Skip to content

Instantly share code, notes, and snippets.

@luksrn
Created April 29, 2016 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luksrn/d02d47acb4a656db11d32c361ed37974 to your computer and use it in GitHub Desktop.
Save luksrn/d02d47acb4a656db11d32c361ed37974 to your computer and use it in GitHub Desktop.
public interface GroovyObject {
Object invokeMethod(String name, Object args);
Object getProperty(String property);
void setProperty(String property, Object newValue);
MetaClass getMetaClass();
void setMetaClass(MetaClass metaClass);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment