Class AbstractCaller
java.lang.Object
se.krka.kahlua.integration.expose.caller.AbstractCaller
- All Implemented Interfaces:
Caller
- Direct Known Subclasses:
ConstructorCaller
,MethodCaller
public abstract class AbstractCaller extends java.lang.Object implements Caller
-
Field Summary
Fields Modifier and Type Field Description protected boolean
needsMultipleReturnValues
protected java.lang.Class[]
parameters
protected java.lang.Class
varargType
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractCaller(java.lang.Class[] classArray)
-
Method Summary
Modifier and Type Method Description java.lang.Class[]
getParameterTypes()
java.lang.Class
getVarargType()
boolean
hasVararg()
boolean
needsMultipleReturnValues()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface se.krka.kahlua.integration.expose.caller.Caller
call, getDescriptor, hasSelf
-
Field Details
-
parameters
protected final java.lang.Class[] parameters -
needsMultipleReturnValues
protected final boolean needsMultipleReturnValues -
varargType
protected final java.lang.Class varargType
-
-
Constructor Details
-
AbstractCaller
protected AbstractCaller(java.lang.Class[] classArray)
-
-
Method Details
-
getParameterTypes
public final java.lang.Class[] getParameterTypes()- Specified by:
getParameterTypes
in interfaceCaller
-
getVarargType
public final java.lang.Class getVarargType()- Specified by:
getVarargType
in interfaceCaller
-
hasVararg
public final boolean hasVararg() -
needsMultipleReturnValues
public final boolean needsMultipleReturnValues()- Specified by:
needsMultipleReturnValues
in interfaceCaller
-