Packagejp.progression.config
Classpublic final class WebConfig
InheritanceWebConfig Inheritance jp.progression.core.proto.Configuration
Implementsjp.progression.core.impls.IWebConfig

WebConfig クラスは、Progression を Web サイト制作に特化したモードで動作させるための環境設定クラスです。


Example
  // WebConfig を作成する
  var config:WebConfig = new WebConfig();
  
  // Progression を初期化する
  Progression.initialize( config );
  
  // Progression インスタンスを作成する
  var manager:Progression = new Progression( "index", stage );
  

See also

jp.progression.ActivatedLicenseType
jp.progression.Progression.initialize()


Public Properties
 PropertyDefined by
  useHTMLInjection : Boolean
[read-only] HTML インジェクション機能を有効化するかどうかを取得します。
WebConfig
  useSWFSize : Boolean
[read-only] SWFSize を有効化するかどうかを取得します。
WebConfig
  useSWFWheel : Boolean
[read-only] SWFWheel を有効化するかどうかを取得します。
WebConfig
Public Methods
 MethodDefined 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
Property detail
useHTMLInjectionproperty
useHTMLInjection:Boolean  [read-only]

HTML インジェクション機能を有効化するかどうかを取得します。

Implementation
    public function get useHTMLInjection():Boolean
useSWFSizeproperty 
useSWFSize:Boolean  [read-only]

SWFSize を有効化するかどうかを取得します。

Implementation
    public function get useSWFSize():Boolean
useSWFWheelproperty 
useSWFWheel:Boolean  [read-only]

SWFWheel を有効化するかどうかを取得します。

Implementation
    public function get useSWFWheel():Boolean
Constructor detail
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.

Parameters
activatedLicenseType: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)ツールチップ処理の実装として使用したいクラスです。
Method detail
toString()method
public override function toString():String

指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.

Returns
Stringオブジェクトのストリング表現です。 A string representation of the object.