// $Id$ package com.mfh.comn.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Sets the related field to not be mapped to a column. Must be added to a * getter or a setter associated with a field. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface NoColumn { }