jodd.madvoc.meta
Annotation Type In


@Documented
@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface In

Marks fields and setters where injection should be performed.


Optional Element Summary
 boolean create
          Specifies if fields should be created if not found.
 boolean remove
          Specifies if property should be removed from the scope.
 ScopeType scope
          Specifies parameter scope.
 java.lang.String value
          Specifies non-default parameter name.
 

create

public abstract boolean create
Specifies if fields should be created if not found.

Default:
true

scope

public abstract ScopeType scope
Specifies parameter scope.

Default:
REQUEST

remove

public abstract boolean remove
Specifies if property should be removed from the scope. Sometimes it is not possible to do so.

Default:
false

value

public abstract java.lang.String value
Specifies non-default parameter name.

Default:
""


Copyright © 2003-2010 Jodd Team