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 33 @Target ({ElementType.METHOD, ElementType.CONSTRUCTOR}) @Retention (RetentionPolicy.RUNTIME) 34 public @interface PostCond 35 { 36 String [] value(); 37 } 38 | Popular Tags |