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, boolean boolean1)  
  • 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, boolean boolean1)
  • Method Details

    • getParameterTypes

      public final java.lang.Class[] getParameterTypes()
      Specified by:
      getParameterTypes in interface Caller
    • getVarargType

      public final java.lang.Class getVarargType()
      Specified by:
      getVarargType in interface Caller
    • hasVararg

      public final boolean hasVararg()
      Specified by:
      hasVararg in interface Caller
    • needsMultipleReturnValues

      public final boolean needsMultipleReturnValues()
      Specified by:
      needsMultipleReturnValues in interface Caller