1 22 package org.jboss.annotation; 23 24 import java.lang.annotation.Target ; 25 import java.lang.annotation.ElementType ; 26 import java.lang.annotation.Retention ; 27 import java.lang.annotation.RetentionPolicy ; 28 29 35 @Target ({ElementType.METHOD, ElementType.FIELD}) @Retention (RetentionPolicy.RUNTIME) 36 public @interface IgnoreDependency 37 { 38 } 39 | Popular Tags |