Query クラスは、URL のクエリパラメータを ActionScript で制御しやすい形に表現したモデルクラスです。
Query class is a model class which express the query parameter of the URL that can handle by ActionScript easily.
Example
// Query インスタンスを作成する
var query:Query = new Query();
public function Query(query:* = null, readOnly:Boolean = false)
新しい Query インスタンスを作成します。
Creates a new Query object.
Parameters
| query:* (default = null) — 初期値となるオブジェクトです。
|
| |
| readOnly:Boolean (default = false) — インスタンスを読み取り専用にするかどうかです。
|
public function clone(readOnly:Boolean = false):Query
Query インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。
Duplicates an instance of an Query subclass.
Parameters
| readOnly:Boolean (default = false) — インスタンスを読み取り専用にするかどうかです。
If the instance is read only or not.
|
Returns
| Query —
元のオブジェクトと同じプロパティ値を含む新しい Query インスタンスです。
A new Query object that is identical to the original.
|
public function equals(query:Query):Boolean
指定された Query オブジェクトが、対象 Query オブジェクトと同一内容かどうかを返します。
Returns if the specified Query object has the same content with the Query object.
Parameters
| query:Query — テストする Query オブジェクトです。
The Query object to test.
|
Returns
| Boolean — 同一内容の Query オブジェクトであれば true に、それ以外の場合は false になります。
Returns true if the Query object has same content, otherwise return false.
|
public function toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
Returns
| String — オブジェクトのストリング表現です。
A string representation of the object.
|
Copyright (C) 2007-2010 taka:nium.jp. All Rights Reserved.