
proguard.annotation.KeepPublicProtectedClassMemberNames Maven / Gradle / Ivy
The newest version!
/*
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
* Copyright (c) 2002-2007 Eric Lafortune ([email protected])
*/
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.
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface KeepPublicProtectedClassMemberNames
{
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy