net.sf.testextensions
Interface AccessMethod


public interface AccessMethod

The AccessMethod describes the interface, for accessing a Method.

Author:
forge-cl

Method Summary
 Object call()
          The method call the definied methods with no arguments.
 Object call(Object arg)
          The method call the definied methods with the spezified arguments.
 Object call(Object[] args)
          The method call the definied methods with the spezified arguments.
 Object call(Object arg1, Object arg2)
          The method call the definied methods with the spezified arguments.
 Object call(Object arg1, Object arg2, Object arg3)
          The method call the definied methods with the spezified arguments.
 

Method Detail

call

Object call(Object[] args)
            throws TestExtensionException
The method call the definied methods with the spezified arguments.

Parameters:
args - the args for the method call.
Returns:
the return value of the method call
Throws:
TestExtensionException - if no method, which suites to the args, was found or any other error occures.

call

Object call()
            throws TestExtensionException
The method call the definied methods with no arguments.

Returns:
the return value of the method call
Throws:
TestExtensionException - if no method, which suites to the args, was found or any other error occures.

call

Object call(Object arg)
            throws TestExtensionException
The method call the definied methods with the spezified arguments.

Parameters:
arg - one parameter for the method call.
Returns:
the return value of the method call
Throws:
TestExtensionException - if no method, which suites to the args, was found or any other error occures.

call

Object call(Object arg1,
            Object arg2)
            throws TestExtensionException
The method call the definied methods with the spezified arguments.

Parameters:
arg1 - first parameter for the method call.
arg2 - second parameter for the method call.
Returns:
the return value of the method call
Throws:
TestExtensionException - if no method, which suites to the args, was found or any other error occures.

call

Object call(Object arg1,
            Object arg2,
            Object arg3)
            throws TestExtensionException
The method call the definied methods with the spezified arguments.

Parameters:
arg1 - first parameter for the method call.
arg2 - second parameter for the method call.
arg3 - third parameter for the method call.
Returns:
the return value of the method call
Throws:
TestExtensionException - if no method, which suites to the args, was found or any other error occures.


Copyright © 2007. All Rights Reserved.