Class Debugger.CallFrame

    • Method Summary

       
      Generate Array that Indicates which Parameter are Optional
      Modifier and Type Method Description
      boolean[] optionals()
      Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.
       
      Methods: class java.lang.Object
      Modifier and Type Method Description
      boolean equals​(Object other)
      Checks whether 'this' equals an input Java-Object
      int hashCode()
      Generates a Hash-Code for 'this' instance
      • Methods inherited from class java.lang.Object

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

      • CallFrame

        🡅  🡇     🗕  🗗  🗖
        public CallFrame​(java.lang.String callFrameId,
                         java.lang.String functionName,
                         Debugger.Location functionLocation,
                         Debugger.Location location,
                         java.lang.String url,
                         Debugger.Scope[] scopeChain,
                         RunTime.RemoteObject _this,
                         RunTime.RemoteObject returnValue,
                         java.lang.Boolean canBeRestarted)
        Constructor
        Parameters:
        callFrameId - Call frame identifier. This identifier is only valid while the virtual machine is paused.
        functionName - Name of the JavaScript function called on this call frame.
        functionLocation - Location in the source code.
        OPTIONAL
        location - Location in the source code.
        url - JavaScript script name or url. Deprecated in favor of using the location.scriptId to resolve the URL via a previously sent Debugger.scriptParsed event.
        DEPRECATED
        scopeChain - Scope chain for this call frame.
        _this - this object for this call frame.
        returnValue - The value being returned, if the function is at return point.
        OPTIONAL
        canBeRestarted - Valid only while the VM is paused and indicates whether this frame can be restarted or not. Note that a true value here does not guarantee that Debugger#restartFrame with this CallFrameId will be successful, but it is very likely.
        OPTIONALEXPERIMENTAL
    • Method Detail

      • optionals

        🡅  🡇     🗕  🗗  🗖
        public boolean[] optionals()
        Description copied from class: BaseType
        Implementing this method allows sub-classes to specify which JSON Properties may be absent or null. When binding a JsonObject to a Java-Object, if some of the expected fields for the Java-Object map to Properties which might be left-out or omitted, then that may be indicated by setting that fields array position TRUE.

        NOTE: This array should have a length equal to the number of fields contained by the Java Object. The first boolean in the array should specify whether the first Object Field may by absent. The second boolean should specify whether the second Object Field is optional in the JSON - and so on and so forth...
        Specified by:
        optionals in class BaseType
        Returns:
        A boolean[] array whose length is precisely equal to the number of fields in the Java Object.
        Code:
        Exact Method Body:
         return new boolean[] { false, false, true, false, false, false, false, true, true, };
        
      • equals

        🡅  🡇     🗕  🗗  🗖
        public boolean equals​(java.lang.Object other)
        Checks whether 'this' equals an input Java-Object
        Overrides:
        equals in class java.lang.Object
        Code:
        Exact Method Body:
         if (this == other)                       return true;
         if (other == null)                       return false;
         if (other.getClass() != this.getClass()) return false;
                
         CallFrame o = (CallFrame) other;
                
         return
                 Objects.equals(this.callFrameId, o.callFrameId)
             &&  Objects.equals(this.functionName, o.functionName)
             &&  Objects.equals(this.functionLocation, o.functionLocation)
             &&  Objects.equals(this.location, o.location)
             &&  Objects.equals(this.url, o.url)
             &&  Arrays.deepEquals(this.scopeChain, o.scopeChain)
             &&  Objects.equals(this._this, o._this)
             &&  Objects.equals(this.returnValue, o.returnValue)
             &&  Objects.equals(this.canBeRestarted, o.canBeRestarted);
        
      • hashCode

        🡅     🗕  🗗  🗖
        public int hashCode()
        Generates a Hash-Code for 'this' instance
        Overrides:
        hashCode in class java.lang.Object
        Code:
        Exact Method Body:
         return
                 Objects.hashCode(this.callFrameId)
             +   Objects.hashCode(this.functionName)
             +   this.functionLocation.hashCode()
             +   this.location.hashCode()
             +   Objects.hashCode(this.url)
             +   Arrays.deepHashCode(this.scopeChain)
             +   this._this.hashCode()
             +   this.returnValue.hashCode()
             +   Objects.hashCode(this.canBeRestarted);