/**
  * Call back method that must be called as soon as the given <code>
  * ClassConstructorCall</code> object has been traversed.
  *
  * @param pClassConstructorCall  The <code>ClassConstructorCall</code>
  *                               object that has just been traversed.
  */
 public void actionPerformed(
      
     ClassConstructorCall pClassConstructorCall)
 {
     // Nothing to do.
 }
 /**
  * Call back method that must be called when the given <code>
  * ClassConstructorCall</code> will become the next <i>traverse
  * candidate</i>.
  *
  * @param pClassConstructorCall  The <code>ClassConstructorCall</code> object
  *                               that will become the next <i>traverse
  *                               candidate</i>.
  */
 public void performAction(
      
     ClassConstructorCall pClassConstructorCall)
 {
     // Nothing to do.
 }