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

proguard.annotation.KeepGettersSetters Maven / Gradle / Ivy

/*
 * ProGuard -- shrinking, optimization, obfuscation, and preverification
 *             of Java bytecode.
 */
package proguard.annotation;

import java.lang.annotation.*;

/**
 * This annotation specifies to keep all getters and setters of the annotated
 * class from being shrunk, optimized, or obfuscated as entry points.
 *
 * @author Eric Lafortune
 */
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface KeepGettersSetters {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy