public class FilterCallChain extends CallChain
| Modifier | Constructor and Description | 
|---|---|
protected  | 
FilterCallChain(CallChain next)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
generateCall(JavaWriter out,
            java.lang.String retVar,
            java.lang.String var,
            java.lang.String[] args)
Generates the code for the method call. 
 | 
java.lang.Class[] | 
getExceptionTypes()
Returns the method's exception types. 
 | 
java.lang.Class[] | 
getParameterTypes()
Returns the method's parameter types. 
 | 
java.lang.Class | 
getReturnType()
Returns the method's return type. 
 | 
protected FilterCallChain(CallChain next)
public java.lang.Class[] getParameterTypes()
getParameterTypes in class CallChainpublic java.lang.Class getReturnType()
getReturnType in class CallChainpublic java.lang.Class[] getExceptionTypes()
getExceptionTypes in class CallChainpublic void generateCall(JavaWriter out, java.lang.String retVar, java.lang.String var, java.lang.String[] args) throws java.io.IOException
generateCall in class CallChainout - the writer to the output stream.retVar - the variable to hold the return valuevar - the object to be calledargs - the method argumentsjava.io.IOException