/**
  *
  * @param pParent The <code>MethodCallPO</code> from which we made the call to the current
  *        <code>MethodCallPO</code>.
  * @param pClassName The name of the <code>Class</code> on which we call the statement associated with this
  *        <code>MethodCallDTO</code>.
  * @param pMethodName The method name of the statement associated with this <code>MethodCallDTO</code>.
  * @param pGroupName The name of the group associated to this <code>MethodCallDTO</code>.
  * @param pParams The parameters passed to the method <code>pMethodName</code>.
  */
 public MethodCallPO(MethodCallPO parent, String className, String methodName, String groupName, Object[] parameters)
 {
     if (parent != null)
     { // On chaine la hierachie
         parent.AddChildren(this);
     }
     mClassName = className;
     mMethodName = methodName;
     mBeginTime = Util.CurrentTimeMillis();
     mParams = getParamsAsString(parameters, className, methodName);
     mGroupName = groupName;
 }