com.hp.lft.report

Class ReportParameter

  • java.lang.Object
    • com.hp.lft.report.ReportParameter
  • Direct Known Subclasses:
    VerificationParameter


    public class ReportParameter
    extends java.lang.Object
    Represents the parameter data used in the context of an SDK operation. This data is displayed to UFT Developer report.
    • Field Summary

      Modifier and TypeField and Description
      java.lang.Stringname
      The name of the parameter.
      java.lang.Objectvalue
      The value of the parameter.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • name

        public java.lang.String name
        The name of the parameter.
      • value

        public java.lang.Object value
        The value of the parameter.
    • Constructor Detail

      • ReportParameter

        public ReportParameter()
        Create a new instance of ReportParameter.
      • ReportParameter

        public ReportParameter(java.lang.String name,
                               java.lang.Object value)
        Create a new instance of ReportParameter with the given name and value.
        Parameters:
        name - the name of the parameter.
        value - the value of the parameter.