1 22 package org.jboss.aspects.dbc; 23 24 import java.lang.annotation.ElementType ; 25 import java.lang.annotation.Retention ; 26 import java.lang.annotation.RetentionPolicy ; 27 import java.lang.annotation.Target ; 28 29 34 @Target ({ElementType.METHOD, ElementType.CONSTRUCTOR}) @Retention (RetentionPolicy.RUNTIME) 35 public @interface PreCond 36 { 37 String [] value(); 38 } 39 40 | Popular Tags |