org.less4j
Interface Controller.Function

Enclosing class:
Controller

public static interface Controller.Function

A simple interface for functions applied to an actor by a controller dispatcher, the last articulation in an application of less4j.

Synopsis

public class HelloWorld implements Controller.Function {
    public void call (Actor $) {
        $.json.put("hello", "World!");
    }
}

Version:
0.30
Author:
Laurent Szyster

Method Summary
 void call(Actor $)
          Any application of an Actor instance.
 

Method Detail

call

void call(Actor $)
Any application of an Actor instance.

Parameters:
$ -