jfun.yan.xml.nuts.spring
Class BeanPostProcessorQueue

java.lang.Object
  extended by jfun.yan.xml.nuts.spring.BeanPostProcessorQueue

public final class BeanPostProcessorQueue
extends java.lang.Object

The queue that collects all components that instantiate BeanPostProcessor objects.

Author:
Ben Yu Nov 20, 2005 5:29:06 PM

Constructor Summary
BeanPostProcessorQueue()
           
 
Method Summary
 void addBeanPostProcessor(java.lang.String name, Component bpp)
          Add a Component that instantiates BeanPostProcessor.
 Component getBeanPostProcessor(int i)
          Get a BeanPostProcessor component.
 java.lang.String getName(int i)
          Get the name of a BeanPostProcessor component.
 int size()
          To get the number of BeanPostProcessor components stored in the queue.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BeanPostProcessorQueue

public BeanPostProcessorQueue()
Method Detail

addBeanPostProcessor

public void addBeanPostProcessor(java.lang.String name,
                                 Component bpp)
Add a Component that instantiates BeanPostProcessor.

Parameters:
name - the name of the component.
bpp - the component.

getName

public java.lang.String getName(int i)
Get the name of a BeanPostProcessor component.

Parameters:
i - the ordinal position of the component.
Returns:
the name.

getBeanPostProcessor

public Component getBeanPostProcessor(int i)
Get a BeanPostProcessor component.

Parameters:
i - the ordinal position of the component.
Returns:
the name.

size

public int size()
To get the number of BeanPostProcessor components stored in the queue.