OSDN Git Service

ループ識別情報の簡素化
[mikutoga/TogaGem.git] / src / main / java / jp / sourceforge / mikutoga / parser / pmd / PmdMorphHandler.java
index c3efed6..df12b87 100644 (file)
@@ -16,22 +16,14 @@ import jp.sourceforge.mikutoga.parser.ParseStage;
  */
 public interface PmdMorphHandler extends LoopHandler {
 
-    /**
-     * モーフ情報パースステージ。
-     */
-    class PmdMorphStage extends ParseStage{
-        /** コンストラクタ。 */
-        PmdMorphStage(){ super(); return; }
-    }
-
     /** モーフ抽出ループ。 */
-    PmdMorphStage MORPH_LIST = new PmdMorphStage();
+    ParseStage MORPH_LIST = new ParseStage();
 
     /** モーフ頂点抽出ループ。 */
-    PmdMorphStage MORPHVERTEX_LIST = new PmdMorphStage();
+    ParseStage MORPHVERTEX_LIST = new ParseStage();
 
     /** モーフ出現順抽出ループ。 */
-    PmdMorphStage MORPHORDER_LIST = new PmdMorphStage();
+    ParseStage MORPHORDER_LIST = new ParseStage();
 
     /**
      * モーフ情報の通知を受け取る。