remove (bot.) for name creation in botanical names of rank section #4122 and #4279
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / strategy / merge / Merge.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.cdm.strategy.merge;
12
13 import static java.lang.annotation.ElementType.FIELD;
14 import static java.lang.annotation.RetentionPolicy.RUNTIME;
15
16 import java.lang.annotation.Retention;
17 import java.lang.annotation.Target;
18
19 /**
20 * @author a.mueller
21 * @created 03.08.2009
22 * @version 1.0
23 */
24 @Target({FIELD})
25 @Retention(RUNTIME)
26 public @interface Merge {
27 MergeMode value();
28
29 }