Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 86c50f7fee5ee5a28fe9f8ed595908b5 > files > 28

proguard-4.8-2.fc18.noarch.rpm

/*
 * 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 class members of the annotated
 * class from being shrunk, optimized, or obfuscated as entry points.
 */
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface KeepPublicClassMembers {}