| %line | %branch | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| tsukuba_bunko.peko.scenario.text.TextElementHandler |
|
|
| 1 | /* |
|
| 2 | * "Peko" Visual Novel System |
|
| 3 | * |
|
| 4 | * All Rights Reserved. |
|
| 5 | * Copyright (c) 1999-2003 Tsukuba Bunko. |
|
| 6 | * |
|
| 7 | * $Id: TextElementHandler.java,v 1.1 2005/07/11 12:49:18 ppoi Exp $ |
|
| 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 | 0 | super(); |
| 27 | 0 | } |
| 28 | ||
| 29 | ||
| 30 | /** |
|
| 31 | * TextCanvas コーディネータを取得します。 |
|
| 32 | * @return TextCanvas コーディネータ |
|
| 33 | */ |
|
| 34 | protected TextCoordinator getTextCoordinator() |
|
| 35 | { |
|
| 36 | 0 | return getSceneContext().getSceneProcessor().getTextCoordinator(); |
| 37 | } |
|
| 38 | } |
| This report is generated by jcoverage, Maven and Maven JCoverage Plugin. |