Packagejp.nium.display
Classpublic class ExLoader
InheritanceExLoader Inheritance flash.display.Loader
ImplementsIDisplayObjectContainer, IIdGroup, jp.nium.core.impls.IExDisplayObject
SubclassesCastLoader, ExImageLoader

ExLoader クラスは、Loader クラスの基本機能を拡張した jp.nium パッケージで使用される基本的な表示オブジェクトクラスです。 ExLoader class is a basic display object class used at jp.nium package which extends the basic function of Loader class.


Example
  // ExLoader インスタンスを作成する
  var loader:ExLoader = new ExLoader();
  

See also

jp.nium.display.getInstanceById()
jp.nium.display.getInstancesByGroup()


Public Properties
 PropertyDefined by
  className : String
[read-only] インスタンスのクラス名を取得します。 Indicates the instance className of the IExDisplayObject.
ExLoader
  group : String
インスタンスのグループ名を取得または設定します。 Indicates the instance group of the IExDisplayObject.
ExLoader
  id : String
インスタンスの識別子を取得または設定します。 Indicates the instance id of the IExDisplayObject.
ExLoader
Public Methods
 MethodDefined by
  
ExLoader(initObject:Object = null)
新しい ExLoader インスタンスを作成します。 Creates a new ExLoader object.
ExLoader
  
setProperties(parameters:Object):DisplayObject
インスタンスに対して、複数のプロパティを一括設定します。 Setup the several instance properties.
ExLoader
  
toString():String
指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ExLoader
Property detail
classNameproperty
className:String  [read-only]

インスタンスのクラス名を取得します。 Indicates the instance className of the IExDisplayObject.

Implementation
    public function get className():String
groupproperty 
group:String  [read-write]

インスタンスのグループ名を取得または設定します。 Indicates the instance group of the IExDisplayObject.

Implementation
    public function get group():String
    public function set group(value:String):void

See also

idproperty 
id:String  [read-write]

インスタンスの識別子を取得または設定します。 Indicates the instance id of the IExDisplayObject.

Implementation
    public function get id():String
    public function set id(value:String):void

See also

Constructor detail
ExLoader()constructor
public function ExLoader(initObject:Object = null)

新しい ExLoader インスタンスを作成します。 Creates a new ExLoader object.

Parameters
initObject:Object (default = null)設定したいプロパティを含んだオブジェクトです。
Method detail
setProperties()method
public function setProperties(parameters:Object):DisplayObject

インスタンスに対して、複数のプロパティを一括設定します。 Setup the several instance properties.

Parameters
parameters:Object設定したいプロパティを含んだオブジェクトです。 The object that contains the property to setup.

Returns
DisplayObject自身の参照です。
toString()method 
public override function toString():String

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

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