interface @PropertyField

Abstract goes here...

Description

Description goes here...

Declaration

package org.qi4j.api.injection.scope;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.qi4j.api.injection.InjectionScope;

/**
* Annotation to denote the injection of a
* property into a Fragment field (a Concern,
* SideEffect, Constraint or Mixin).
*/
@Retention( RetentionPolicy.RUNTIME )
@Target( { ElementType.FIELD } )
@Documented
@InjectionScope
public @interface PropertyField
{
    /** Name of the property.
     * If not set then name will be name of field.
     */
    String value() default "";
}

Example

Example(s) goes here...
Powered by SiteVisionexternal link.