de.beamertool.viewer.data
Class SmsPool

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<E>
          extended by java.util.AbstractSequentialList<E>
              extended by java.util.LinkedList<InboundMessage>
                  extended by de.beamertool.viewer.data.SmsPool
All Implemented Interfaces:
Serializable, Cloneable, Iterable<InboundMessage>, Collection<InboundMessage>, Deque<InboundMessage>, List<InboundMessage>, Queue<InboundMessage>

public class SmsPool
extends LinkedList<InboundMessage>

Author:
ocm-zeeman
See Also:
Serialized Form

Constructor Summary
SmsPool(Settings theSettings)
           
 
Method Summary
 boolean add(InboundMessage msg)
           
 void add(int index, InboundMessage msg)
           
 boolean addAll(Collection<? extends InboundMessage> msgs)
           
 boolean addAll(int index, Collection<? extends InboundMessage> msgs)
           
 Object clone()
           
 
Methods inherited from class java.util.LinkedList
addFirst, addLast, clear, contains, descendingIterator, element, get, getFirst, getLast, indexOf, lastIndexOf, listIterator, offer, offerFirst, offerLast, peek, peekFirst, peekLast, poll, pollFirst, pollLast, pop, push, remove, remove, remove, removeFirst, removeFirstOccurrence, removeLast, removeLastOccurrence, set, size, toArray, toArray
 
Methods inherited from class java.util.AbstractSequentialList
iterator
 
Methods inherited from class java.util.AbstractList
equals, hashCode, listIterator, subList
 
Methods inherited from class java.util.AbstractCollection
containsAll, isEmpty, removeAll, retainAll, toString
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
containsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, retainAll, subList
 
Methods inherited from interface java.util.Deque
iterator
 

Constructor Detail

SmsPool

public SmsPool(Settings theSettings)
Method Detail

add

public boolean add(InboundMessage msg)
Specified by:
add in interface Collection<InboundMessage>
Specified by:
add in interface Deque<InboundMessage>
Specified by:
add in interface List<InboundMessage>
Specified by:
add in interface Queue<InboundMessage>
Overrides:
add in class LinkedList<InboundMessage>

add

public void add(int index,
                InboundMessage msg)
Specified by:
add in interface List<InboundMessage>
Overrides:
add in class LinkedList<InboundMessage>

addAll

public boolean addAll(Collection<? extends InboundMessage> msgs)
Specified by:
addAll in interface Collection<InboundMessage>
Specified by:
addAll in interface List<InboundMessage>
Overrides:
addAll in class LinkedList<InboundMessage>

addAll

public boolean addAll(int index,
                      Collection<? extends InboundMessage> msgs)
Specified by:
addAll in interface List<InboundMessage>
Overrides:
addAll in class LinkedList<InboundMessage>

clone

public Object clone()
Overrides:
clone in class LinkedList<InboundMessage>