proguard.annotation.KeepPublicClassMemberNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proguard-annotations Show documentation
Show all versions of proguard-annotations Show documentation
Java annotations to configure ProGuard, the free shrinker, optimizer, obfuscator, and preverifier for Java bytecode
The newest version!
/*
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*/
package proguard.annotation;
import java.lang.annotation.*;
/**
* This annotation specifies to keep all public 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 KeepPublicClassMemberNames {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy