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

com.github.earchitecture.reuse.model.annotation.LessThan Maven / Gradle / Ivy

The newest version!
package com.github.earchitecture.reuse.model.annotation;

import static java.lang.annotation.ElementType.METHOD;

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

/**
 * 
 * @author ccosta
 *
 */
@Target({ METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface LessThan {
    /**
     * 
     * @return nome do campo
     */
    String field();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy