KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > annotation > ejb > CallByValue


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.annotation.ejb;
8
9 import java.lang.annotation.ElementType JavaDoc;
10 import java.lang.annotation.Retention JavaDoc;
11 import java.lang.annotation.RetentionPolicy JavaDoc;
12 import java.lang.annotation.Target JavaDoc;
13
14 /**
15  * Comment
16  *
17  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
18  * @version $Revision: 1.1.2.1 $
19  */

20 @Target JavaDoc({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
21 @Retention JavaDoc(RetentionPolicy.RUNTIME)
22 public @interface CallByValue
23 {
24 }
25
Popular Tags