1 7 package org.jboss.annotation.ejb; 8 9 import java.lang.annotation.ElementType ; 10 import java.lang.annotation.Retention ; 11 import java.lang.annotation.RetentionPolicy ; 12 import java.lang.annotation.Target ; 13 14 20 @Target ({ElementType.TYPE, ElementType.ANNOTATION_TYPE}) 21 @Retention (RetentionPolicy.RUNTIME) 22 public @interface CallByValue 23 { 24 } 25 | Popular Tags |