org.opensolaris.opengrok.index
Class IgnoredNames.PatternList

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<E>
          extended by java.util.ArrayList<java.lang.String>
              extended by org.opensolaris.opengrok.index.IgnoredNames.PatternList
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<java.lang.String>, java.util.Collection<java.lang.String>, java.util.List<java.lang.String>, java.util.RandomAccess
Enclosing class:
IgnoredNames

public class IgnoredNames.PatternList
extends java.util.ArrayList<java.lang.String>

During the load of the configuration file, the framework will add entries to the ignored pattern list. Since I use them in different lists, I need to detect when an object is beeing added to this list (So I may populate it to the correct list as well)

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
IgnoredNames.PatternList(IgnoredNames owner)
           
 
Method Summary
 boolean add(java.lang.String pattern)
           
 
Methods inherited from class java.util.ArrayList
add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeRange, retainAll, set, size, subList, toArray, toArray, trimToSize
 
Methods inherited from class java.util.AbstractList
equals, hashCode
 
Methods inherited from class java.util.AbstractCollection
containsAll, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
containsAll, equals, hashCode
 

Constructor Detail

IgnoredNames.PatternList

public IgnoredNames.PatternList(IgnoredNames owner)
Method Detail

add

public boolean add(java.lang.String pattern)
Specified by:
add in interface java.util.Collection<java.lang.String>
Specified by:
add in interface java.util.List<java.lang.String>
Overrides:
add in class java.util.ArrayList<java.lang.String>