| Package | jp.progression.config |
| Class | public final class WebConfig |
| Inheritance | WebConfig jp.progression.core.proto.Configuration |
| Implements | jp.progression.core.impls.IWebConfig |
// WebConfig を作成する var config:WebConfig = new WebConfig(); // Progression を初期化する Progression.initialize( config ); // Progression インスタンスを作成する var manager:Progression = new Progression( "index", stage );
See also
| Property | Defined by | ||
|---|---|---|---|
| useHTMLInjection : Boolean [read-only]
HTML インジェクション機能を有効化するかどうかを取得します。
| WebConfig | ||
| useSWFSize : Boolean [read-only]
SWFSize を有効化するかどうかを取得します。
| WebConfig | ||
| useSWFWheel : Boolean [read-only]
SWFWheel を有効化するかどうかを取得します。
| WebConfig | ||
| Method | Defined by | ||
|---|---|---|---|
|
WebConfig(activatedLicenseType:String = null, useSWFWheel:Boolean = true, useSWFSize:Boolean = true, useHTMLInjection:Boolean = false, executor:Class = null, toolTipRenderer:Class = null)
新しい WebConfig インスタンスを作成します。
Creates a new WebConfig object.
| WebConfig | ||
|
toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
| WebConfig | ||
| useHTMLInjection | property |
useHTMLInjection:Boolean [read-only]HTML インジェクション機能を有効化するかどうかを取得します。
Implementation public function get useHTMLInjection():Boolean
| useSWFSize | property |
useSWFSize:Boolean [read-only]SWFSize を有効化するかどうかを取得します。
Implementation public function get useSWFSize():Boolean
| useSWFWheel | property |
useSWFWheel:Boolean [read-only]SWFWheel を有効化するかどうかを取得します。
Implementation public function get useSWFWheel():Boolean
| WebConfig | () | constructor |
public function WebConfig(activatedLicenseType:String = null, useSWFWheel:Boolean = true, useSWFSize:Boolean = true, useHTMLInjection:Boolean = false, executor:Class = null, toolTipRenderer:Class = null)新しい WebConfig インスタンスを作成します。 Creates a new WebConfig object.
ParametersactivatedLicenseType:String (default = null) — 適用させたいライセンスの種類です。
|
|
useSWFWheel:Boolean (default = true) — SWFWheel を有効化するかどうかです。
|
|
useSWFSize:Boolean (default = true) — SWFSize を有効化するかどうかです。
|
|
useHTMLInjection:Boolean (default = false) — HTML インジェクション機能を有効化するかどうかです。
|
|
executor:Class (default = null) — 汎用的な処理の実装として使用したいクラスです。
|
|
toolTipRenderer:Class (default = null) — ツールチップ処理の実装として使用したいクラスです。
|
| toString | () | method |
public override function toString():String指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ReturnsString — オブジェクトのストリング表現です。
A string representation of the object.
|