01: /*
02: * To change this template, choose Tools | Templates
03: * and open the template in the editor.
04: */
05:
06: package it.biobytes.ammentos;
07:
08: import java.lang.annotation.ElementType;
09: import java.lang.annotation.Retention;
10: import java.lang.annotation.RetentionPolicy;
11: import java.lang.annotation.Target;
12:
13: /**
14: *
15: * @author davide
16: */
17: @Target({ElementType.METHOD})
18: @Retention(RetentionPolicy.RUNTIME)
19: public @interface OnSave {
20: When value();
21: }
|