/** Calls the superclass dispose method. */
 public void dispose() {
   final String METHOD_NAME = "dispose()";
   this.logDebug(METHOD_NAME + " 1/2: Started");
   super.dispose();
   this.instanceStatus.notifyDispose();
   this.logDebug(METHOD_NAME + " 2/2: Done");
 }
 /** Calls the superclass recycle method and increases the recycle counters. */
 public void recycle() {
   final String METHOD_NAME = "recycle()";
   this.logDebug(METHOD_NAME + " 1/2: Started");
   super.recycle();
   this.instanceStatus.notifyRecycle();
   this.logDebug(METHOD_NAME + " 2/2: Done");
 }