~ubuntu-branches/ubuntu/wily/proguard/wily

« back to all changes in this revision

Viewing changes to examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMembers.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-04-10 13:58:11 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20140410135811-ddwzt2avu94rnolt
Tags: 4.11-1
* Team upload.
* New upstream release
* Removed the non-free documentation from the package (Closes: #719706)
* Removed the pre-built jars from the upstream tarball
* debian/control:
  - The package is now co-maintained with the Java Team
  - Standards-Version updated to 3.9.5 (no changes)
  - Added the Vcs-* fields
  - Added the Homepage field
* Switch to debhelper level 9
* Use XZ compression for the upstream tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * ProGuard -- shrinking, optimization, obfuscation, and preverification
3
 
 *             of Java bytecode.
4
 
 *
5
 
 * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
6
 
 */
7
 
package proguard.annotation;
8
 
 
9
 
import java.lang.annotation.*;
10
 
 
11
 
/**
12
 
 * This annotation specifies to keep all public or protected class members of
13
 
 * the annotated class from being shrunk, optimized, or obfuscated as entry
14
 
 * points.
15
 
 */
16
 
@Target({ ElementType.TYPE })
17
 
@Retention(RetentionPolicy.CLASS)
18
 
@Documented
19
 
public @interface KeepPublicProtectedClassMembers {}