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

net.zerobuilder.IgnoreGetter Maven / Gradle / Ivy

package net.zerobuilder;

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

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

/**
 * 

* Marks a "getter" method as ignored. *

*/ @Retention(SOURCE) @Target({METHOD}) public @interface IgnoreGetter { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy