info.javelot.functionalj
Interface Function0


public interface Function0

Interface that represents a function of no parameters.

Author:
Copyright © 2006 Frederic Daoud

Method Summary
 Object call()
          Calls the function and returns the result.
 

Method Detail

call

public Object call()
            throws FunctionException
Calls the function and returns the result.

Returns:
the result of the function call.
Throws:
FunctionException - thrown if an exception occurs during the function call.