com.rational.test.ft.script

Class Image



  • public class Image
    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
      Image(java.lang.String tag)
      Takes a required String value.
      Image(java.lang.String tag, 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 getTag()
      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

      • Image

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

        public Image(java.lang.String tag,
                     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

      • getTag

        public java.lang.String getTag()
        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