01: // $Id: NoColumn.java 12 2007-08-29 05:23:13Z jcamaia $
02:
03: package net.sf.persist.annotations;
04:
05: import java.lang.annotation.ElementType;
06: import java.lang.annotation.Retention;
07: import java.lang.annotation.RetentionPolicy;
08: import java.lang.annotation.Target;
09:
10: /**
11: * Sets the related field to not be mapped to a column. Must be added to a
12: * getter or a setter associated with a field.
13: */
14: @Retention(RetentionPolicy.RUNTIME)
15: @Target(ElementType.METHOD)
16: public @interface NoColumn {
17:
18: }
|