SetterAnnotation

Annotation used to mark a member to be called or set (in case of fields), with args passed to setter.

Note: if an overloaded method is annotated with Setter, the method from overload set that matches argument list in Setter annotation will be called.

Constructors

this
this(Args args)

Constructor accepting a list of arguments, that will be passed to method, or set to a field.

Members

Functions

factoryConfigurer
PropertyConfigurer!T factoryConfigurer(Locator!() locator)

Constructs a configurer that will call or set a member for aggregate of type T.

factoryConfigurer
PropertyConfigurer!T factoryConfigurer(Locator!() locator)

Constructs a configurer that will call or set a member for aggregate of type T.

Variables

args
Tuple!Args args;
Undocumented in source.

Parameters

Args

the argument types of arguments passed to method

Meta