org.apache.pivot.wtk
Class Window.IconImageSequence

java.lang.Object
  extended by org.apache.pivot.wtk.Window.IconImageSequence
All Implemented Interfaces:
Iterable<Image>, org.apache.pivot.collections.Sequence<Image>
Enclosing class:
Window

public class Window.IconImageSequence
extends Object
implements org.apache.pivot.collections.Sequence<Image>, Iterable<Image>


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.collections.Sequence
org.apache.pivot.collections.Sequence.Tree<T>
 
Constructor Summary
Window.IconImageSequence()
           
 
Method Summary
 int add(Image image)
           
 Image get(int index)
           
 int getLength()
           
 int indexOf(Image image)
           
 void insert(Image image, int index)
           
 Iterator<Image> iterator()
           
 int remove(Image image)
           
 org.apache.pivot.collections.Sequence<Image> remove(int index, int count)
           
 Image update(int index, Image image)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Window.IconImageSequence

public Window.IconImageSequence()
Method Detail

add

public int add(Image image)
Specified by:
add in interface org.apache.pivot.collections.Sequence<Image>

insert

public void insert(Image image,
                   int index)
Specified by:
insert in interface org.apache.pivot.collections.Sequence<Image>

update

public Image update(int index,
                    Image image)
Specified by:
update in interface org.apache.pivot.collections.Sequence<Image>

remove

public int remove(Image image)
Specified by:
remove in interface org.apache.pivot.collections.Sequence<Image>

remove

public org.apache.pivot.collections.Sequence<Image> remove(int index,
                                                           int count)
Specified by:
remove in interface org.apache.pivot.collections.Sequence<Image>

get

public Image get(int index)
Specified by:
get in interface org.apache.pivot.collections.Sequence<Image>

indexOf

public int indexOf(Image image)
Specified by:
indexOf in interface org.apache.pivot.collections.Sequence<Image>

getLength

public int getLength()
Specified by:
getLength in interface org.apache.pivot.collections.Sequence<Image>

iterator

public Iterator<Image> iterator()
Specified by:
iterator in interface Iterable<Image>