org.apache.aries.blueprint.annotation
Annotation Type Arg


public @interface Arg

used to describe argument of the bean constructor or the argument of the factory method for the bean this is mapped to Targument for the Tbean


Optional Element Summary
 String description
          the description of the argument
 int index
          the zero-based index into the parameter list of the factory method or constructor to be invoked for this argument.
 String ref
          the value of the ref attribute of the argument
 String value
          the value of the argument
 

value

public abstract String value
the value of the argument

Default:
""

ref

public abstract String ref
the value of the ref attribute of the argument

Default:
""

description

public abstract String description
the description of the argument

Default:
""

index

public abstract int index
the zero-based index into the parameter list of the factory method or constructor to be invoked for this argument. This is determined by specifying the index attribute for the bean. If not explicitly set, this will return -1 and the initial ordering is defined by its position in the args[] list.

Default:
-1


Copyright © 2009-2011 The Apache Software Foundation. All Rights Reserved.