blob: b2bce128e862ed37cd197017d802e5ba2f6019f0 [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 implementations or extensions of the
* annotated class as entry points.
*
* @author Eric Lafortune
*/
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface KeepImplementations {}