com.rational.test.ft.script

Class Text



  • public class Text
    extends Value
    Adds definition to a simple String value. Text values are significant relative to a particular component.
    Since:
    RFT1.0
    • Field Summary

    • Constructor Summary

      Constructors 
      Constructor and Description
      Text(java.lang.String text)
      Takes a required String value.
      Text(java.lang.String text, int index)
      Takes the required String value as well as an index that specifies which subitem should be used.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      boolean equals(java.lang.Object obj)
      Compares Text values.
      int getIndex()
      Accesses the text index value.
      java.lang.String getText()
      Accesses the Text value.
      java.lang.String toString()
      Sets toString to the value that this class represents.
      • Methods inherited from class com.rational.test.ft.script.Value

        getValue
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Text

        public Text(java.lang.String text)
        Takes a required String value.
        Since:
        RFT1.0
      • Text

        public Text(java.lang.String text,
                    int index)
        Takes the required String value as well as an index that specifies which subitem should be used. The index value is zero based, that is, the first instance of String is 0, the second is 1, and so on.
        Since:
        RFT1.0
    • Method Detail

      • getText

        public java.lang.String getText()
        Accesses the Text value.
        Since:
        RFT1.0
      • getIndex

        public int getIndex()
        Accesses the text index value.
        Since:
        RFT1.0
      • equals

        public boolean equals(java.lang.Object obj)
        Compares Text values.
        Overrides:
        equals in class Value
        Parameters:
        obj - the right side of the comparison
        Since:
        RFT1.0
      • toString

        public java.lang.String toString()
        Sets toString to the value that this class represents.
        Overrides:
        toString in class Value
        Since:
        RFT1.0