예제 #1
0
 /**
  * The <code>ComponentManager</code> factory methods produce component instances, which can be
  * freed using this method. Calling the factory methods without freeing components when they are
  * not used anymore can (in theory) cause memory problems.
  *
  * @param component The component to free.
  */
 public void freeComponent(AbstractComponent component) {
   pool.unregisterComponent(component);
 }