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

com.github.stephanenicolas.mimic.annotations.MimicField Maven / Gradle / Ivy

Go to download

The annotations of the library. Should be included in runtime scope of projects using mimic.

The newest version!
package com.github.stephanenicolas.mimic.annotations;

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

@Target({ })
@Retention(RetentionPolicy.CLASS)
/**
 * Defines that a field is to be copied. Can only be used inside {@link Mimic}.
 * @author SNI
 */
public @interface MimicField {
    /** Name of the field to mimic.*/
    String fieldName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy