beanface.el.functor
Class FunctionParameters

java.lang.Object
  extended by beanface.el.functor.FunctionParameters

public class FunctionParameters
extends java.lang.Object

A simple place holder object to hold an array of parameter values to be passed to a method invocation.


Constructor Summary
FunctionParameters(java.lang.Object... params)
          Construct the FunctionParameters by wrapping the given params.
 
Method Summary
 java.lang.Object[] getParams()
          Get the array of parameter objects.
 java.lang.String toString()
          A string representation of the parameter array for debugging and logging purposes.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FunctionParameters

public FunctionParameters(java.lang.Object... params)
Construct the FunctionParameters by wrapping the given params.

Parameters:
params -
Method Detail

getParams

public java.lang.Object[] getParams()
Get the array of parameter objects.

Returns:
the parameter array.

toString

public java.lang.String toString()
A string representation of the parameter array for debugging and logging purposes.

Overrides:
toString in class java.lang.Object