1
2
3
4
5
6
7
8
9 package tsukuba_bunko.peko.scenario.text;
10
11 import tsukuba_bunko.peko.scenario.ElementHandler;
12
13
14 /***
15 * <samp>text</samp> 要素の構成要素を処理する <code>ElementHandler</code> に共通の処理を提供します。
16 * @author $Author: ppoi $
17 * @version $Revision: 1.1 $
18 */
19 public abstract class TextElementHandler extends ElementHandler {
20
21 /***
22 * <code>TextElementHandler</code> のインスタンスを作成するためにサブクラスのコンストラクタから呼ばれます。
23 */
24 protected TextElementHandler()
25 {
26 super();
27 }
28
29
30 /***
31 * TextCanvas コーディネータを取得します。
32 * @return TextCanvas コーディネータ
33 */
34 protected TextCoordinator getTextCoordinator()
35 {
36 return getSceneContext().getSceneProcessor().getTextCoordinator();
37 }
38 }