Class SetVariableArguments


  • public class SetVariableArguments
    extends java.lang.Object
    Arguments for 'setVariable' request.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      ValueFormat getFormat()
      Specifies details on how to format the response value.
      java.lang.String getName()
      The name of the variable in the container.
      java.lang.String getValue()
      The value of the variable.
      int getVariablesReference()
      The reference of the variable container.
      int hashCode()  
      void setFormat​(ValueFormat format)
      Specifies details on how to format the response value.
      void setName​(java.lang.String name)
      The name of the variable in the container.
      void setValue​(java.lang.String value)
      The value of the variable.
      void setVariablesReference​(int variablesReference)
      The reference of the variable container.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • SetVariableArguments

        public SetVariableArguments()
    • Method Detail

      • getVariablesReference

        public int getVariablesReference()
        The reference of the variable container. The `variablesReference` must have been obtained in the current suspended state. See 'Lifetime of Object References' in the DebugProtocol.Overview section for details.
      • setVariablesReference

        public void setVariablesReference​(int variablesReference)
        The reference of the variable container. The `variablesReference` must have been obtained in the current suspended state. See 'Lifetime of Object References' in the DebugProtocol.Overview section for details.
      • getName

        public java.lang.String getName()
        The name of the variable in the container.
      • setName

        public void setName​(java.lang.String name)
        The name of the variable in the container.
      • getValue

        public java.lang.String getValue()
        The value of the variable.
      • setValue

        public void setValue​(java.lang.String value)
        The value of the variable.
      • getFormat

        public ValueFormat getFormat()
        Specifies details on how to format the response value.

        This is an optional property.

      • setFormat

        public void setFormat​(ValueFormat format)
        Specifies details on how to format the response value.

        This is an optional property.

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object