| Package | jp.nium.display |
| Class | public class ChildIterator |
| Inheritance | ChildIterator Object |
| Method | Defined By | ||
|---|---|---|---|
ChildIterator(container:DisplayObjectContainer)
新しい ChildIterator インスタンスを作成します。
Creates a new ChildIterator object.
| ChildIterator | ||
hasNext():Boolean
現在のインデックス位置に対象が存在するかどうかを返します。
Returns if the object exists in the current index position.
| ChildIterator | ||
next():DisplayObject
現在の対象を返して、次の対象にインデックスを進めます。
Returns the current object and move the index to the next object.
| ChildIterator | ||
reset():void
現在のインデックス位置をリセットします。
Reset the current index position.
| ChildIterator | ||
toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
| ChildIterator | ||
| ChildIterator | () | Constructor |
public function ChildIterator(container:DisplayObjectContainer)新しい ChildIterator インスタンスを作成します。 Creates a new ChildIterator object.
Parameterscontainer:DisplayObjectContainer — 関連付けたい DisplayObjectContainer インスタンスです。
The DisplayObjectContainer instance that want to relate.
|
| hasNext | () | method |
public function hasNext():Boolean現在のインデックス位置に対象が存在するかどうかを返します。 Returns if the object exists in the current index position.
ReturnsBoolean —
対象が存在すれば true を、存在しなければ false です。
Returns true if the object exists and returns false if not.
|
| next | () | method |
public function next():DisplayObject現在の対象を返して、次の対象にインデックスを進めます。 Returns the current object and move the index to the next object.
ReturnsDisplayObject —
現在の対象である DisplayObject インスタンスです。
The current DisplayObject instance.
|
| reset | () | method |
public function reset():void現在のインデックス位置をリセットします。 Reset the current index position.
| toString | () | method |
public function toString():String指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ReturnsString —
オブジェクトのストリング表現です。
A string representation of the object.
|