All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.fhframework.annotations.InjectComponent Maven / Gradle / Ivy

package pl.fhframework.annotations;

import java.lang.annotation.*;

/**
 * Injects a component to a field on a form.
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface InjectComponent {

    /**
     * Injected component id, defaults to field name.
     */
    String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy