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 mapped to
010 * a different label
011 * @author Spencer Bliven
012 *
013 */
014@Target(value=ElementType.FIELD)
015@Retention(value=RetentionPolicy.RUNTIME)
016public @interface CIFLabel {
017        String label();
018}