org.omnifaces.util
Interface Callback.WithArgument<A>

Type Parameters:
A - The argument type.
Enclosing class:
Callback

public static interface Callback.WithArgument<A>

Use this if you need a callback which takes an argument.

Author:
Bauke Scholtz

Method Summary
 void invoke(A a)
          This method should be invoked by the method where you're passing this callback instance to.
 

Method Detail

invoke

void invoke(A a)
This method should be invoked by the method where you're passing this callback instance to.

Parameters:
a - The callback argument to work with.