com.googlecode.android_scripting.rpc
Annotation Type RpcParameter


@Retention(value=RUNTIME)
@Target(value=PARAMETER)
@Documented
public @interface RpcParameter

An annotation that is used to document the parameters of an RPC.

Author:
Felix Arends (felix.arends@gmail.com)

Required Element Summary
 java.lang.String name
          The name of the formal parameter.
 
Optional Element Summary
 java.lang.String description
          Description of the RPC.
 

Element Detail

name

public abstract java.lang.String name
The name of the formal parameter. This should be in agreement with the java code.

description

public abstract java.lang.String description
Description of the RPC. This should be a short descriptive statement without a full stop, such as 'disables the WiFi mode'.

Default:
""