OSDN Git Service

必要のないクラスを削除し,クラスの整理を行った.
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / ExtractionUnit.java
1 package jp.sourceforge.stigmata;
2
3 /**
4  * This enum type represents birthmark extraction unit.
5  * 
6  * The name of
7  * {@link jp.sourceforge.stigmata.BirthmarkSet <code>BirthmarkSet</code>} will be
8  * class name, method name, package name, or product name.
9  * 
10  * @author Haruaki TAMADA
11  */
12 public enum ExtractionUnit{
13     CLASS,
14     PACKAGE,
15     ARCHIVE,
16     @Deprecated
17     METHOD,
18 }