|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.lang.MetaClassRegistry.MetaClassCreationHandle
public class MetaClassRegistry.MetaClassCreationHandle
Class used as base for the creation of MetaClass implementations. The Class defaults to MetaClassImpl, if the class loading fails to find a special meta class. The name for such a meta class would be the class name it is created for with the prefix "groovy.runtime.metaclass." By replacing the handle in the registry you can have any control over the creation of what MetaClass is used for a class that you want to have. WARNING: experimental code, likely to change soon
Method Summary | |
---|---|
MetaClass
|
create(Class theClass, MetaClassRegistry registry)
|
protected MetaClass
|
createNormalMetaClass(Class theClass, MetaClassRegistry registry)
|
boolean
|
isDisableCustomMetaClassLookup()
|
void
|
setDisableCustomMetaClassLookup(boolean disableCustomMetaClassLookup)
Set flag saying to disable lookup of custom meta classes It's enough to call this method only once in your application for handle which was set in to registry as every new handle will inherit this property |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Method Detail |
---|
public final MetaClass create(Class theClass, MetaClassRegistry registry)
protected MetaClass createNormalMetaClass(Class theClass, MetaClassRegistry registry)
public boolean isDisableCustomMetaClassLookup()
public void setDisableCustomMetaClassLookup(boolean disableCustomMetaClassLookup)
disableCustomMetaClassLookup
- flag saying to disable lookup of custom meta classes
Copyright © 2003-2013 The Codehaus. All rights reserved.