org.eclipse.emf.ecore.resource.impl
Class ContentHandlerRegistryImpl

java.lang.Object
  extended by java.util.AbstractMap<K,V>
      extended by java.util.TreeMap<java.lang.Integer,java.util.List<ContentHandler>>
          extended by org.eclipse.emf.ecore.resource.impl.ContentHandlerRegistryImpl
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.util.Map<java.lang.Integer,java.util.List<ContentHandler>>, java.util.NavigableMap<java.lang.Integer,java.util.List<ContentHandler>>, java.util.SortedMap<java.lang.Integer,java.util.List<ContentHandler>>, ContentHandler.Registry

public class ContentHandlerRegistryImpl
extends java.util.TreeMap<java.lang.Integer,java.util.List<ContentHandler>>
implements ContentHandler.Registry

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class java.util.AbstractMap
java.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>
 
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K,V>
 
Field Summary
 
Fields inherited from interface org.eclipse.emf.ecore.resource.ContentHandler.Registry
HIGH_PRIORITY, INSTANCE, LOW_PRIORITY, NORMAL_PRIORITY, VERY_HIGH_PRIORITY, VERY_LOW_PRIORITY
 
Constructor Summary
ContentHandlerRegistryImpl()
           
 
Method Summary
 java.util.List<ContentHandler> contentHandlers()
          Returns a read only list of all the content handlers in the map in priority order.
 void put(int priority, ContentHandler contentHandler)
          Adds an additional content handler with the given priority to the map.
 
Methods inherited from class java.util.TreeMap
ceilingEntry, ceilingKey, clear, clone, comparator, containsKey, containsValue, descendingKeySet, descendingMap, entrySet, firstEntry, firstKey, floorEntry, floorKey, get, headMap, headMap, higherEntry, higherKey, keySet, lastEntry, lastKey, lowerEntry, lowerKey, navigableKeySet, pollFirstEntry, pollLastEntry, put, putAll, remove, size, subMap, subMap, tailMap, tailMap, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, isEmpty, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.SortedMap
comparator, entrySet, firstKey, headMap, keySet, lastKey, subMap, tailMap, values
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, size
 

Constructor Detail

ContentHandlerRegistryImpl

public ContentHandlerRegistryImpl()
Method Detail

put

public void put(int priority,
                ContentHandler contentHandler)
Description copied from interface: ContentHandler.Registry
Adds an additional content handler with the given priority to the map. If there is already a list for the given priority in the map, the handler is added to that list. Otherwise, a new list containing the handler is created and put into the map.

Specified by:
put in interface ContentHandler.Registry
Parameters:
priority - the priority of the handler.
contentHandler - the new handler to add.

contentHandlers

public java.util.List<ContentHandler> contentHandlers()
Description copied from interface: ContentHandler.Registry
Returns a read only list of all the content handlers in the map in priority order.

Specified by:
contentHandlers in interface ContentHandler.Registry
Returns:
a read only list of all the content handlers in the map in priority order.

Copyright 2001-2006 IBM Corporation and others.
All Rights Reserved.