1 package com.foxinmy.weixin4j.xml;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 /**
9 * 对$n结尾的节点注解
10 *
11 * @className ListsuffixResult
12 * @author jinyu(foxinmy@gmail.com)
13 * @date 2015年6月15日
14 * @since JDK 1.6
15 * @see
16 */
17 @Target(ElementType.FIELD)
18 @Retention(RetentionPolicy.RUNTIME)
19 public @interface ListsuffixResult {
20 String[] value() default { "(_\\d)$" };
21 }