/**
  * Call back method that must be called when the given <code>
  * VariableDeclaratorIdentifier</code> will become the next <i>traverse
  * candidate</i>.
  *
  * @param pVariableDeclaratorIdentifier  The <code>
  *                                       VariableDeclaratorIdentifier</code>
  *                                       object that will become the next
  *                                       <i>traverse candidate</i>.
  */
 public void performAction(
      
     VariableDeclaratorIdentifier pVariableDeclaratorIdentifier)
 {
     // Nothing to do.
 }
        /**
         * Returns the identifier of the formal parameter.
         *
         * @return  The the identifier of the formal parameter.
         */
        public VariableDeclaratorIdentifier getIdentifier()
        {
            if (mVarDeclIdentifier == null)
            {
                mVarDeclIdentifier = new AST2VariableDeclaratorIdentifier((AST2JSOMTree)
                        getTreeNode().GetChild(2), getTokenRewriteStream());
            }

            return mVarDeclIdentifier;
        }
 /**
  * Call back method that must be called as soon as the given <code>
  * VariableDeclaratorIdentifier</code> object has been traversed.
  *
  * @param pVariableDeclaratorIdentifier  The <code>
  *                                       VariableDeclaratorIdentifier</code>
  *                                       object that has just been
  *                                       traversed.
  */
 public void actionPerformed(
      
     VariableDeclaratorIdentifier pVariableDeclaratorIdentifier)
 {
     // Nothing to do.
 }