gate.creole.metadata
Annotation Type RunTime


@Documented
@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface RunTime

Marker annotation used in conjunction with CreoleParameter to mark parameters that are runtime parameters as opposed to init-time ones. This annotation is named RunTime (camel-case) so as not to conflict with the Runtime class in java.lang.


Optional Element Summary
 boolean value
          Defaults to true but can be set to false to explicitly mark a parameter as init-time rather than runtime.
 

value

public abstract boolean value
Defaults to true but can be set to false to explicitly mark a parameter as init-time rather than runtime.

Default:
true