blob: 6028ba91af9e888d984216019765b3c7a0e27b01 [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 public getters and setters of the
* annotated class from being shrunk, optimized, or obfuscated as entry points.
*/
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface KeepPublicGettersSetters {}