Class StackFrameFormat


  • public class StackFrameFormat
    extends ValueFormat
    Provides formatting information for a stack frame.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.Boolean getIncludeAll()
      Includes all stack frames, including those the debug adapter might otherwise hide.
      java.lang.Boolean getLine()
      Displays the line number of the stack frame.
      java.lang.Boolean getModule()
      Displays the module of the stack frame.
      java.lang.Boolean getParameterNames()
      Displays the names of parameters for the stack frame.
      java.lang.Boolean getParameters()
      Displays parameters for the stack frame.
      java.lang.Boolean getParameterTypes()
      Displays the types of parameters for the stack frame.
      java.lang.Boolean getParameterValues()
      Displays the values of parameters for the stack frame.
      int hashCode()  
      void setIncludeAll​(java.lang.Boolean includeAll)
      Includes all stack frames, including those the debug adapter might otherwise hide.
      void setLine​(java.lang.Boolean line)
      Displays the line number of the stack frame.
      void setModule​(java.lang.Boolean module)
      Displays the module of the stack frame.
      void setParameterNames​(java.lang.Boolean parameterNames)
      Displays the names of parameters for the stack frame.
      void setParameters​(java.lang.Boolean parameters)
      Displays parameters for the stack frame.
      void setParameterTypes​(java.lang.Boolean parameterTypes)
      Displays the types of parameters for the stack frame.
      void setParameterValues​(java.lang.Boolean parameterValues)
      Displays the values of parameters for the stack frame.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • StackFrameFormat

        public StackFrameFormat()
    • Method Detail

      • getParameters

        public java.lang.Boolean getParameters()
        Displays parameters for the stack frame.

        This is an optional property.

      • setParameters

        public void setParameters​(java.lang.Boolean parameters)
        Displays parameters for the stack frame.

        This is an optional property.

      • getParameterTypes

        public java.lang.Boolean getParameterTypes()
        Displays the types of parameters for the stack frame.

        This is an optional property.

      • setParameterTypes

        public void setParameterTypes​(java.lang.Boolean parameterTypes)
        Displays the types of parameters for the stack frame.

        This is an optional property.

      • getParameterNames

        public java.lang.Boolean getParameterNames()
        Displays the names of parameters for the stack frame.

        This is an optional property.

      • setParameterNames

        public void setParameterNames​(java.lang.Boolean parameterNames)
        Displays the names of parameters for the stack frame.

        This is an optional property.

      • getParameterValues

        public java.lang.Boolean getParameterValues()
        Displays the values of parameters for the stack frame.

        This is an optional property.

      • setParameterValues

        public void setParameterValues​(java.lang.Boolean parameterValues)
        Displays the values of parameters for the stack frame.

        This is an optional property.

      • getLine

        public java.lang.Boolean getLine()
        Displays the line number of the stack frame.

        This is an optional property.

      • setLine

        public void setLine​(java.lang.Boolean line)
        Displays the line number of the stack frame.

        This is an optional property.

      • getModule

        public java.lang.Boolean getModule()
        Displays the module of the stack frame.

        This is an optional property.

      • setModule

        public void setModule​(java.lang.Boolean module)
        Displays the module of the stack frame.

        This is an optional property.

      • getIncludeAll

        public java.lang.Boolean getIncludeAll()
        Includes all stack frames, including those the debug adapter might otherwise hide.

        This is an optional property.

      • setIncludeAll

        public void setIncludeAll​(java.lang.Boolean includeAll)
        Includes all stack frames, including those the debug adapter might otherwise hide.

        This is an optional property.

      • equals

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