KeepApplication.java revision b72c5c2e5482cf10117b2b25f642f7616b2326c3
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 */
7package proguard.annotation;
8
9import java.lang.annotation.*;
10
11/**
12 * This annotation specifies to keep the annotated class as an application,
13 * together with its a main method.
14 */
15@Target({ ElementType.TYPE })
16@Retention(RetentionPolicy.CLASS)
17@Documented
18public @interface KeepApplication {}
19