001package org.biojava.nbio.structure.io.mmcif.model;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008/**
009 * Annotation indicating that a specific field of a bean should be ignored
010 * @author Spencer Bliven
011 *
012 */
013@Target(value=ElementType.FIELD)
014@Retention(value=RetentionPolicy.RUNTIME)
015public @interface IgnoreField {
016
017}