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