to.etc.domui.annotations
Annotation Type AjaxParam


@Retention(value=RUNTIME)
@Target(value=PARAMETER)
public @interface AjaxParam

Annotation for function parameters to an Ajax-callable method. This defines the name of the parameter within the request and any possible defaults.

Author:
Frits Jalvingh Created on Apr 6, 2006

Required Element Summary
 java.lang.String value
          The default attribute defines the request parameter's name of this parameter in a GET URL.
 
Optional Element Summary
 java.lang.String dflt
          An optional default parameter value.
 boolean json
           
 boolean trim
           
 

Element Detail

value

public abstract java.lang.String value
The default attribute defines the request parameter's name of this parameter in a GET URL.

Returns:

dflt

public abstract java.lang.String dflt
An optional default parameter value.

Returns:
Default:
""

trim

public abstract boolean trim
Default:
true

json

public abstract boolean json
Default:
false