public static function clone(target:Object):Object
指定されたオブジェクトを複製して返します。
Returns the copy of the specified object.
Parameters
| target:Object — 対象のオブジェクトです。
The object to copy.
|
Returns
| Object — 複製されたオブジェクトです。
The copied object.
|
Example
public static function formatToString(target:*, className:String, ... args):String
シンプルな toString() メソッドの実装を提供します。
Parameters
| target:* — 実装したい対象です。
|
| |
| className:String — 対象のクラス名です。
|
| |
| ... args — 出力に反映させたいプロパティ名です。
|
Returns
Example
public static function setProperties(target:Object, parameters:Object):void
対象オブジェクトのプロパティを一括設定します。
Set the whole property of the object.
Parameters
| target:Object — 一括設定したいオブジェクトです。
The object to set.
|
| |
| parameters:Object — 設定したいプロパティを含んだオブジェクトです。
The object that contains the property to setup.
|
Example
public static function toQueryString(query:Object):String
指定されたオブジェクトのクエリーストリング表現を返します。
Returns the query string expression of the specified object.
Parameters
| query:Object — 対象のオブジェクトです。
The object to get the query string.
|
Returns
| String — オブジェクトのクエリーストリング表現です。
The query string expression of the object.
|
Example
public static function toString(target:Object):String
指定されたオブジェクトのストリング表現を返します。
Returns the string expression of the specified object.
Parameters
| target:Object — 対象のオブジェクトです。
The object to get the string expression.
|
Returns
| String — オブジェクトのストリング表現です。
The string expression of the object.
|
Example
Copyright (C) 2007-2010 taka:nium.jp. All Rights Reserved.