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

proguard.annotation.Keep Maven / Gradle / Ivy

There is a newer version: 6.3.0beta1
Show newest version
/*
 * ProGuard -- shrinking, optimization, obfuscation, and preverification
 *             of Java bytecode.
 */
package proguard.annotation;

import java.lang.annotation.*;

/**
 * This annotation specifies not to optimize or obfuscate the annotated class or
 * class member as an entry point.
 *
 * @author Eric Lafortune
 */
@Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface Keep {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy