KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > MyAnnotation


1 ////////////////////////////////////////////////////////////////////////////////
2
// Annotation for use by package definitions
3
// Created: 2005
4
////////////////////////////////////////////////////////////////////////////////
5
package com.puppycrawl.tools.checkstyle;
6
7 import java.lang.annotation.Target JavaDoc;
8 import java.lang.annotation.ElementType JavaDoc;
9
10 /**
11  * Annotation for use by package definitions
12  * @author Michael Studman
13  */

14 @Target JavaDoc(value=ElementType.PACKAGE)
15 public @interface MyAnnotation
16 {
17 }
Popular Tags