com.rational.test.ft.script

Class NetCheckedState

  • java.lang.Object
    • com.rational.test.ft.script.NetCheckedState


  • public class NetCheckedState
    extends java.lang.Object
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      static NetCheckedState checked()
      Creates a CHECKED state object.
      static NetCheckedState construct(int state)
      Serializes a State object; should not be used directly.
      boolean equals(java.lang.Object right)
      Compares state values.
      int getState()
      Used in serialization of a State object; should not be used directly.
      static java.lang.String[] getStateText()
      Specifies the names used in the editing of the state setting; is a name array.
      static NetCheckedState indeterminate()
      Creates an INDETERMINATE state object.
      boolean isChecked()
      Returns true if this state represents a CHECKED state.
      boolean isIndeterminate()
      Returns true if this state represents an INDETERMINATE state.
      boolean isNotChecked()
      Returns true if this state represents a NOT_CHECKED state.
      static NetCheckedState notChecked()
      Creates a NOT_CHECKED state object.
      java.lang.String toString()
      Sets toString to the value that this class represents.
      void updateState(int newState)
      Updates the internal state setting appropriately.
      • Methods inherited from class java.lang.Object

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

      • notChecked

        public static NetCheckedState notChecked()
        Creates a NOT_CHECKED state object.
        Since:
        RFT2.0
      • isNotChecked

        public boolean isNotChecked()
        Returns true if this state represents a NOT_CHECKED state.
        Since:
        RFT2.0
      • checked

        public static NetCheckedState checked()
        Creates a CHECKED state object.
        Since:
        RFT2.0
      • isChecked

        public boolean isChecked()
        Returns true if this state represents a CHECKED state.
        Since:
        RFT2.0
      • indeterminate

        public static NetCheckedState indeterminate()
        Creates an INDETERMINATE state object.
        Since:
        RFT2.0
      • isIndeterminate

        public boolean isIndeterminate()
        Returns true if this state represents an INDETERMINATE state.
        Since:
        RFT2.0
      • construct

        public static NetCheckedState construct(int state)
        Serializes a State object; should not be used directly.
        Since:
        RFT2.0
      • getState

        public int getState()
        Used in serialization of a State object; should not be used directly.
        Since:
        RFT2.0
      • getStateText

        public static java.lang.String[] getStateText()
        Specifies the names used in the editing of the state setting; is a name array.
        Since:
        RFT2.0
      • updateState

        public void updateState(int newState)
        Updates the internal state setting appropriately. This method is intended for use by the editors and is intended for internal use only.
        Since:
        RFT2.0
      • toString

        public java.lang.String toString()
        Sets toString to the value that this class represents.
        Overrides:
        toString in class java.lang.Object
        Since:
        RFT2.0
      • equals

        public boolean equals(java.lang.Object right)
        Compares state values.
        Overrides:
        equals in class java.lang.Object
        Since:
        RFT2.0