OSDN Git Service

SAX対応
[mikutoga/Pmd2XML.git] / src / main / java / jp / sfjp / mikutoga / pmd / model / xml / OpenXmlMark.java
1 /*
2  * annotation for beginning XML-element
3  *
4  * License : The MIT License
5  * Copyright(c) 2013 MikuToga Partners
6  */
7
8 package jp.sfjp.mikutoga.pmd.model.xml;
9
10 import java.lang.annotation.ElementType;
11 import java.lang.annotation.Retention;
12 import java.lang.annotation.RetentionPolicy;
13 import java.lang.annotation.Target;
14
15 /**
16  * XML要素開始通知用注釈。
17  */
18 @Target(ElementType.METHOD)
19 @Retention(RetentionPolicy.RUNTIME)
20 @interface OpenXmlMark {
21     /** タグ指定。 */
22     PmdTag value();
23 }