Class AbstractCallSite
- java.lang.Object
- 
- org.codehaus.groovy.runtime.callsite.AbstractCallSite
 
- 
- All Implemented Interfaces:
- CallSite
 - Direct Known Subclasses:
- DummyCallSite,- GetEffectivePogoFieldSite,- GetEffectivePojoPropertySite,- MetaClassSite,- NullCallSite,- PerInstancePojoMetaClassSite,- PogoGetPropertySite,- PogoInterceptableSite,- PogoMetaClassGetPropertySite,- PojoMetaClassGetPropertySite
 
 public class AbstractCallSite extends Object implements CallSite Base class for all call sites.
- 
- 
Field SummaryFields Modifier and Type Field Description protected CallSiteArrayarrayprotected intindexprotected Stringname
 - 
Constructor SummaryConstructors Constructor Description AbstractCallSite(CallSite prev)AbstractCallSite(CallSiteArray array, int index, String name)
 - 
Method Summary
 
- 
- 
- 
Field Detail- 
indexprotected final int index 
 - 
nameprotected final String name 
 - 
arrayprotected final CallSiteArray array 
 
- 
 - 
Constructor Detail- 
AbstractCallSitepublic AbstractCallSite(CallSiteArray array, int index, String name) 
 - 
AbstractCallSitepublic AbstractCallSite(CallSite prev) 
 
- 
 - 
Method Detail- 
getArraypublic CallSiteArray getArray() 
 - 
callSafepublic final Object callSafe(Object receiver, Object arg1, Object arg2, Object arg3) throws Throwable 
 - 
callSafepublic Object callSafe(Object receiver, Object arg1, Object arg2, Object arg3, Object arg4) throws Throwable 
 - 
callpublic Object call(Object receiver, Object arg1, Object arg2, Object arg3, Object arg4) throws Throwable 
 - 
callCurrentpublic Object callCurrent(GroovyObject receiver, Object[] args) throws Throwable - Specified by:
- callCurrentin interface- CallSite
- Throws:
- Throwable
 
 - 
callCurrentpublic Object callCurrent(GroovyObject receiver) throws Throwable - Specified by:
- callCurrentin interface- CallSite
- Throws:
- Throwable
 
 - 
callCurrentpublic Object callCurrent(GroovyObject receiver, Object arg1) throws Throwable - Specified by:
- callCurrentin interface- CallSite
- Throws:
- Throwable
 
 - 
callCurrentpublic Object callCurrent(GroovyObject receiver, Object arg1, Object arg2) throws Throwable - Specified by:
- callCurrentin interface- CallSite
- Throws:
- Throwable
 
 - 
callCurrentpublic Object callCurrent(GroovyObject receiver, Object arg1, Object arg2, Object arg3) throws Throwable - Specified by:
- callCurrentin interface- CallSite
- Throws:
- Throwable
 
 - 
callCurrentpublic Object callCurrent(GroovyObject receiver, Object arg1, Object arg2, Object arg3, Object arg4) throws Throwable - Specified by:
- callCurrentin interface- CallSite
- Throws:
- Throwable
 
 - 
callStaticpublic Object callStatic(Class receiver, Object[] args) throws Throwable - Specified by:
- callStaticin interface- CallSite
- Throws:
- Throwable
 
 - 
callStaticpublic Object callStatic(Class receiver) throws Throwable - Specified by:
- callStaticin interface- CallSite
- Throws:
- Throwable
 
 - 
callStaticpublic Object callStatic(Class receiver, Object arg1) throws Throwable - Specified by:
- callStaticin interface- CallSite
- Throws:
- Throwable
 
 - 
callStaticpublic Object callStatic(Class receiver, Object arg1, Object arg2) throws Throwable - Specified by:
- callStaticin interface- CallSite
- Throws:
- Throwable
 
 - 
callStaticpublic Object callStatic(Class receiver, Object arg1, Object arg2, Object arg3) throws Throwable - Specified by:
- callStaticin interface- CallSite
- Throws:
- Throwable
 
 - 
callStaticpublic Object callStatic(Class receiver, Object arg1, Object arg2, Object arg3, Object arg4) throws Throwable - Specified by:
- callStaticin interface- CallSite
- Throws:
- Throwable
 
 - 
callConstructorpublic Object callConstructor(Object receiver, Object[] args) throws Throwable - Specified by:
- callConstructorin interface- CallSite
- Throws:
- Throwable
 
 - 
callConstructorpublic Object callConstructor(Object receiver) throws Throwable - Specified by:
- callConstructorin interface- CallSite
- Throws:
- Throwable
 
 - 
callConstructorpublic Object callConstructor(Object receiver, Object arg1) throws Throwable - Specified by:
- callConstructorin interface- CallSite
- Throws:
- Throwable
 
 - 
callConstructorpublic Object callConstructor(Object receiver, Object arg1, Object arg2) throws Throwable - Specified by:
- callConstructorin interface- CallSite
- Throws:
- Throwable
 
 - 
callConstructorpublic Object callConstructor(Object receiver, Object arg1, Object arg2, Object arg3) throws Throwable - Specified by:
- callConstructorin interface- CallSite
- Throws:
- Throwable
 
 - 
callConstructorpublic Object callConstructor(Object receiver, Object arg1, Object arg2, Object arg3, Object arg4) throws Throwable - Specified by:
- callConstructorin interface- CallSite
- Throws:
- Throwable
 
 - 
callGetPropertypublic Object callGetProperty(Object receiver) throws Throwable - Specified by:
- callGetPropertyin interface- CallSite
- Throws:
- Throwable
 
 - 
callGroovyObjectGetPropertypublic Object callGroovyObjectGetProperty(Object receiver) throws Throwable - Specified by:
- callGroovyObjectGetPropertyin interface- CallSite
- Throws:
- Throwable
 
 - 
createGroovyObjectGetPropertySiteprotected final CallSite createGroovyObjectGetPropertySite(Object receiver) 
 - 
getPropertypublic Object getProperty(Object receiver) throws Throwable - Specified by:
- getPropertyin interface- CallSite
- Throws:
- Throwable
 
 - 
callGetPropertySafepublic final Object callGetPropertySafe(Object receiver) throws Throwable - Specified by:
- callGetPropertySafein interface- CallSite
- Throws:
- Throwable
 
 
- 
 
-