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

lite.beans.ConstructorProperties Maven / Gradle / Ivy

The newest version!
package lite.beans;

import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Documented
@Target(CONSTRUCTOR)
@Retention(RUNTIME)
public @interface ConstructorProperties {

    /**
     * 

The getter names.

* * @return the getter names corresponding to the parameters in the annotated constructor. */ String[] value(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy