gridsim
Class GridletList

Object
  |
  +--AbstractCollection
        |
        +--AbstractList
              |
              +--AbstractSequentialList
                    |
                    +--LinkedList
                          |
                          +--gridsim.GridletList
All Implemented Interfaces:
Cloneable, Collection, List, Serializable

public class GridletList
extends LinkedList

Gridsim GridletList class is used to maintain a list of Gridlets (in linked-list) and support methods for organizing them

Version:
2.1, June 2003
Author:
Manzur Murshed and Rajkumar Buyya
See Also:
Serialized Form
Invariant:
$none

Field Summary
 
Fields inherited from class AbstractList
modCount
 
Constructor Summary
GridletList()
          Allocates a new GridletList object
 
Method Summary
 void sort()
          Sorts the Gridlets in a list based on their lengths
 
Methods inherited from class LinkedList
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, get, getFirst, getLast, indexOf, lastIndexOf, listIterator, remove, remove, removeFirst, removeLast, set, size, toArray, toArray
 
Methods inherited from class AbstractSequentialList
iterator
 
Methods inherited from class AbstractList
equals, hashCode, listIterator, removeRange, subList
 
Methods inherited from class AbstractCollection
containsAll, isEmpty, removeAll, retainAll, toString
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface List
containsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, retainAll, subList
 

Constructor Detail

GridletList

public GridletList()
Allocates a new GridletList object

Pre Condition:
$none
Post Condition:
$none
Method Detail

sort

public void sort()
Sorts the Gridlets in a list based on their lengths

Pre Condition:
$none
Post Condition:
$none