|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
E - argument typepublic interface NaryProcedure<E>
Typed functor that takes an arbitrary number of arguments of the same type and returns no value.
| Method Summary | |
|---|---|
void |
run(E... e)
Execute this procedure with the specified arguments. |
| Method Detail |
|---|
void run(E... e)
The arguments may be passed as an array
p.run(new E[] { e0, e1, e2, e3 })
or as a sequence of arguments:
p.run(e1, e2, e3, e4)
For more information on varargs, see
>
http://java.sun.com/j2se/1.5.0/docs/guide/language/varargs.html
e - arbitrary number of arguments to this execution
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||