1 package com.opencsv.bean;
2
3 import java.lang.annotation.*;
4
5 /**
6 * Instructs a mapping strategy to look inside a member variable for further
7 * mapping annotations.
8 *
9 * @since 5.0
10 * @author Andrew Rucker Jones
11 */
12 @Documented
13 @Retention(RetentionPolicy.RUNTIME)
14 @Target(ElementType.FIELD)
15 public @interface CsvRecurse {
16 }