OSDN Git Service

Merge release/v3.122.2
[mikutoga/TogaGem.git] / src / main / java / jp / sfjp / mikutoga / pmd / parser / PmdUnifiedHandler.java
1 /*
2  * PMD unified handler
3  *
4  * License : The MIT License
5  * Copyright(c) 2013 MikuToga Partners
6  */
7
8 package jp.sfjp.mikutoga.pmd.parser;
9
10 import jp.sfjp.mikutoga.corelib.EmptyProxyFactory;
11
12 /**
13  * PMDパーサ用の統合ハンドラ。
14  */
15 public interface PmdUnifiedHandler
16     extends PmdBasicHandler,
17             PmdShapeHandler,
18             PmdMaterialHandler,
19             PmdBoneHandler,
20             PmdMorphHandler,
21             PmdEngHandler,
22             PmdToonHandler,
23             PmdRigidHandler,
24             PmdJointHandler {
25
26     /** 何もしない統合ハンドラ。 */
27     public static final PmdUnifiedHandler EMPTY =
28             (PmdUnifiedHandler)
29             ( EmptyProxyFactory.buildEmptyProxy(PmdUnifiedHandler.class) );
30
31 }