OSDN Git Service

modify indentation in AT-clause javadoc.
[mikutoga/TogaGem.git] / src / main / java / jp / sfjp / mikutoga / pmd / parser / PmdToonHandler.java
1 /*
2  * PMD toon texture file information handler
3  *
4  * License : The MIT License
5  * Copyright(c) 2010 MikuToga Partners
6  */
7
8 package jp.sfjp.mikutoga.pmd.parser;
9
10 import jp.sfjp.mikutoga.bin.parser.LoopHandler;
11 import jp.sfjp.mikutoga.bin.parser.MmdFormatException;
12 import jp.sfjp.mikutoga.bin.parser.ParseStage;
13
14 /**
15  * PMDモデルの独自トゥーンテクスチャファイル名の通知用ハンドラ。
16  */
17 public interface PmdToonHandler extends LoopHandler {
18
19     /** トゥーンテクスチャファイル名抽出ループ。 */
20     public static final ParseStage TOON_LIST = new ParseStage();
21
22     /**
23      * 独自トゥーンテクスチャファイル名の通知を受け取る。
24      *
25      * <p>{@link #TOON_LIST}ループの構成要素
26      *
27      * @param toonName 独自トゥーンテクスチャファイル名
28      * @throws MmdFormatException
29      *     不正フォーマットによるパース処理の中断をパーサに指示
30      */
31     public abstract void pmdToonFileInfo(String toonName)
32             throws MmdFormatException;
33
34 }