Coverage report

  %line %branch
tsukuba_bunko.peko.scenario.text.PropertyIDs
0% 
0% 

 1  
 /*
 2  
  * "Peko" Visual Novel System
 3  
  *
 4  
  * All Rights Reserved.
 5  
  * Copyright (c) 1999-2003 Tsukuba Bunko.
 6  
  *
 7  
  * $Id: PropertyIDs.java,v 1.1 2005/07/11 12:49:18 ppoi Exp $
 8  
  */
 9  
 package tsukuba_bunko.peko.scenario.text;
 10  
 
 11  
 
 12  
 /**
 13  
  * シーンヘッダで設定可能なシーンプロパティのプロパティ ID 定義集です。
 14  
  * @author	$Author: ppoi $
 15  
  * @version	$Revision: 1.1 $
 16  
  */
 17  
 public final class PropertyIDs	{
 18  
 
 19  
 	/**
 20  
 	 * ページ表示タイプ:"canvas.text.view-type"
 21  
 	 */
 22  
 	public static final String	CANVAS_TEXT_VIEWTYPE = "canvas.text.view-type";
 23  
 
 24  
 	/**
 25  
 	 * ページ表示領域のサイズ:"canvas.text.size"
 26  
 	 */
 27  
 	public static final String	CANVAS_TEXT_SIZE = "canvas.text.size";
 28  
 
 29  
 	/**
 30  
 	 * ページ表示領域の配置位置:"canvas.text.location"
 31  
 	 */
 32  
 	public static final String	CANVAS_TEXT_LOCATION = "canvas.text.location";
 33  
 
 34  
 	/**
 35  
 	 * ページ表示領域と行配置範囲のパディング領域:"canvas.text.padding"
 36  
 	 */
 37  
 	public static final String	CANVAS_TEXT_PADDING = "canvas.text.padding";
 38  
 
 39  
 	/**
 40  
 	 * 行間隔:"canvas.text.line-span"
 41  
 	 */
 42  
 	public static final String	CANVAS_TEXT_LINESPAN = "canvas.text.line-span";
 43  
 
 44  
 	/**
 45  
 	 * ページ表示領域の背景色
 46  
 	 */
 47  
 	public static final String	CANVAS_TEXT_BACKGROUND_COLOR = "canvas.text.background.color";
 48  
 
 49  
 	/**
 50  
 	 * ページ表示領域背景の透過度
 51  
 	 */
 52  
 	public static final String	CANVAS_TEXT_BACKGROUND_TRANSPARENCY = "canvas.text.background.transparency";
 53  
 
 54  
 	/**
 55  
 	 * 文章の前景色
 56  
 	 */
 57  
 	public static final String	CANVAS_TEXT_FOREGROUND_COLOR = "canvas.text.foreground.color";
 58  
 
 59  
 	/**
 60  
 	 * 文章の影の色
 61  
 	 */
 62  
 	public static final String	CANVAS_TEXT_FOREGROUND_SHADOW = "canvas.text.foreground.shadow";
 63  
 
 64  
 	/**
 65  
 	 * 文章のフォント(フォントファミリー)
 66  
 	 */
 67  
 	public static final String	CANVAS_TEXT_FONT_FAMILY = "canvas.text.font.family";
 68  
 
 69  
 	/**
 70  
 	 * 文章のフォント(フォントサイズ)
 71  
 	 */
 72  
 	public static final String	CANVAS_TEXT_FONT_SIZE = "canvas.text.font.size";
 73  
 
 74  
 	/**
 75  
 	 * 文章のフォント(フォントスタイル)
 76  
 	 */
 77  
 	public static final String	CANVAS_TEXT_FONT_STYLE = "canvas.text.font.style";
 78  
 
 79  
 	/**
 80  
 	 * 文章のフォント(フォントウェイト)
 81  
 	 */
 82  
 	public static final String	CANVAS_TEXT_FONT_WEIGHT = "canvas.text.font.weight";
 83  
 
 84  
 
 85  
 	/**
 86  
 	 * <code>PropertyIDs</code> のインスタンスは生成できません。
 87  
 	 */
 88  
 	private PropertyIDs()
 89  
 	{
 90  0
 		super();
 91  0
 	}
 92  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.