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