blob: f4511ea03759a1d4c579d13bf2979ba734d03174 [file] [log] [blame]
/*
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*/
package proguard.annotation;
import java.lang.annotation.*;
/**
* This annotation specifies to keep all public or protected class members of
* the annotated class from being optimized or obfuscated as entry points.
*
* @author Eric Lafortune
*/
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface KeepPublicProtectedClassMemberNames {}