Serialized Form
-
Package Apache.CLI
-
Class Apache.CLI.AlreadySelectedException extends ParseException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
group
OptionGroup group
The option group selected. -
option
Option option
The option that triggered the exception.
-
-
Class Apache.CLI.AmbiguousOptionException extends UnrecognizedOptionException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
matchingOptions
java.util.Collection<java.lang.String> matchingOptions
-
-
Class Apache.CLI.CommandLine extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
args
java.util.List<java.lang.String> args
-
options
java.util.List<Option> options
-
-
Class Apache.CLI.MissingArgumentException extends ParseException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
option
Option option
-
-
Class Apache.CLI.MissingOptionException extends ParseException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
missingOptions
java.util.List missingOptions
-
-
Class Apache.CLI.Option extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
argCount
int argCount
-
argName
java.lang.String argName
-
description
java.lang.String description
-
longOption
java.lang.String longOption
-
option
java.lang.String option
-
optionalArg
boolean optionalArg
-
required
boolean required
-
type
java.lang.Class<?> type
-
values
java.util.List<java.lang.String> values
-
valuesep
char valuesep
-
-
Class Apache.CLI.OptionGroup extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
optionMap
java.util.Map<java.lang.String,Option> optionMap
-
required
boolean required
-
selected
java.lang.String selected
-
-
Class Apache.CLI.Options extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
longOpts
java.util.Map<java.lang.String,Option> longOpts
-
optionGroups
java.util.Map<java.lang.String,OptionGroup> optionGroups
-
requiredOpts
java.util.List<java.lang.Object> requiredOpts
-
shortOpts
java.util.Map<java.lang.String,Option> shortOpts
-
-
Class Apache.CLI.ParseException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 1L
-
Class Apache.CLI.UnrecognizedOptionException extends ParseException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
option
java.lang.String option
-
-
-
Package javax.json
-
Class javax.json.JsonException extends java.lang.RuntimeException implements Serializable
-
-
Package javax.json.stream
-
Class javax.json.stream.JsonGenerationException extends JsonException implements Serializable
-
Class javax.json.stream.JsonParsingException extends JsonException implements Serializable
-
Serialized Fields
-
location
JsonLocation location
-
-
-
-
Package NeoVisionaries.WebSockets
-
Class NeoVisionaries.WebSockets.HostnameUnverifiedException extends WebSocketException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
mHostname
java.lang.String mHostname
-
mSSLSocket
javax.net.ssl.SSLSocket mSSLSocket
-
-
Class NeoVisionaries.WebSockets.OpeningHandshakeException extends WebSocketException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
mBody
byte[] mBody
-
mHeaders
java.util.Map<java.lang.String,java.util.List<java.lang.String>> mHeaders
-
mStatusLine
StatusLine mStatusLine
-
-
Class NeoVisionaries.WebSockets.WebSocketException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
mError
WebSocketError mError
-
-
-
Package Torello.Browser
-
Class Torello.Browser.AbstractBuilder extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
assigned
boolean[] assigned
-
assignments
java.lang.Object[] assignments
-
descriptor
AbstractDescriptor descriptor
The descriptor used by this builder. It provides the names, expected types, and ordering for each named assignment accepted by this builder.π ForTypeBuilder, these names correspond to fields in a CDP data type. ForCommandBuilder, they correspond to input parameters for a CDP command.
-
-
Class Torello.Browser.AbstractDescriptor extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
classes
java.util.Map<java.lang.String,java.lang.Class> classes
-
domain
Domains domain
The Web Browser "Domain" in which the class / type (or command) represented by this descriptor exists.
π Inside of a Web Browser's Source Code, a "Domain" is essentially the same as a Java Package, and basically means just that.
Browser Automation Design
Java-HTML's Browser Package implements a Web-Browser's Domains as a single class, rather than an entire package. This is because the Java CDP Implementation does not have any actual browser code; but rather is nothing more than a series of wrappers and datagram envelopes which communicate with the actual source code inside of the browser.
π As a result, the methods & types of an entire Browser 'Domain' fit inside of a single Java Class, rather than occupying an entire Java Package. (Browser Domain'CSS', for instance, is wholly placed into a single Java Class:'CSS') -
experimentals
ReadOnlyList<java.lang.Boolean> experimentals
Google's Chrome DevTools Protocol occasionally designates certain properties or command parameters as "experimental." If the element described by a particular list index has been markedexperimental, then the same index in this list will be assigned'TRUE'. -
name
java.lang.String name
This is simply the name of the type or command represented by this descriptor. -
names
ReadOnlyList<java.lang.String> names
Provides the names of the CDP properties or command parameters represented by this descriptor. For aNestedDescriptor, these names correspond to the fields of a nested data type. For aCommandDescriptor, these names correspond to the parameters accepted by a domain command.
Specs as an AST
π‘ Within the Java-HTML Browser AST Parsing package (Torello.Browser.JsonAST), both concepts are actually represented by ASTPPR'snodes: named JSON values with a declared CDP type, optional status, and experimental status. -
optionals
ReadOnlyList<java.lang.Boolean> optionals
Specifies which CDP properties or command parameters have been designated asoptional. Optional values are permitted to be absent from theJsonObjectwhich defines them. -
size
int size
The number of CDP properties or command parameters described by this descriptor-instance.π This number will be equal to the'size()'of each of the lists in this class. -
types
ReadOnlyList<java.lang.Byte> types
The bytes stored in this class are identical to the specified constants in classCDPTypes.
-
-
Class Torello.Browser.AssignmentNameException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
descriptor
AbstractDescriptor descriptor
The descriptor used by the builder when this exception was thrown.π This field is provided as a programmer convenience, to make debugging and error investigation easier. -
name
java.lang.String name
The unknown assignment name that was passed to one of the builder'saccept(...)methods.π For aTypeBuilder, this name usually identifies a field in the CDP type being built. For aCommandBuilder, it usually identifies one of the command's input parameters.
-
-
Class Torello.Browser.AsynchronousException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.BrowserConn extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
browser
java.lang.String browser
-
protocolVersion
java.lang.String protocolVersion
-
userAgent
java.lang.String userAgent
-
v8Version
java.lang.String v8Version
-
webkitVersion
java.lang.String webkitVersion
-
webSocketDebuggerUrl
java.lang.String webSocketDebuggerUrl
-
-
Class Torello.Browser.BrowserError extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
code
int code
The numeric error code assigned by the browser for this error.
This code is defined internally by the Browser and often (but not always) maps to specific protocol-related error conditions such as "Invalid Parameters", "Target Not Found", or "Method Not Implemented." While not formally documented in all cases, the code can be used to categorize and respond to common failure cases. -
commandName
java.lang.String commandName
If this error was generated by a known Command, then the name of that command is saved into this field. If the name is not known, this field will be null. -
domain
Domains domain
If this error was generated by a known Domain, then it will be savied into this field. If the name is not known, this field will be null. -
message
java.lang.String message
The textual description of the error as provided by Chrome.
This message is intended for human readability and often contains hints or clues about why the CDP command failed. It may mention an unsupported method name, a missing argument, or some kind of runtime condition that prevented the browser from fulfilling the request.
While the message is not guaranteed to follow a fixed schema, it is often specific enough to help diagnose problemsβespecially when debugging command payloads or execution timing. -
requestJSONString
java.lang.String requestJSONString
The Json used to build the command.
-
-
Class Torello.Browser.BrowserErrorException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
browserError
BrowserError browserError
-
-
Class Torello.Browser.BrowserEvent extends BaseType<DOMAIN_NESTED extends BrowserEvent<DOMAIN_NESTED>> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.BrowserException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.CommandBuilder extends AbstractBuilder<Script<T>> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.CommandDescriptor extends AbstractDescriptor implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
returnClass
java.lang.Class<T> returnClass
The JavaClassreturned by the command.
-
-
Class Torello.Browser.DataIntegrityException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.InvalidEnumStrException extends DataIntegrityException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.InvalidNumberTypeError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.MarkerEvent extends BrowserEvent<MarkerEvent> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.NestedDescriptor extends AbstractDescriptor implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
baseTypeClass
java.lang.Class<DOMAIN_NESTED extends BaseType<DOMAIN_NESTED>> baseTypeClass
This just keeps a pointer / reference back to the actualjava.lang.Classwhich is described by this "Nested Descriptor."In the JDK, it is sometimes stated that "reifying generic types" could conceivably have a value to the end user. The only purpose of this field is to do just that, "reify" the Type Parameter represented by'DOMAIN_NESTED'.
-
-
Class Torello.Browser.NullNonOptionalException extends DataIntegrityException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.PageConn extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
description
java.lang.String description
-
devtoolsFrontendUrl
java.lang.String devtoolsFrontendUrl
-
faviconUrl
java.lang.String faviconUrl
-
id
java.lang.String id
-
title
java.lang.String title
-
type
java.lang.String type
-
url
java.lang.String url
-
webSocketDebuggerUrl
java.lang.String webSocketDebuggerUrl
-
-
Class Torello.Browser.RDPError extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cause
java.lang.Throwable cause
The underlying exception or cause that led to this RDPError.
This may includeNullPointerException,ClassCastException, or any other unchecked exception that occurred during handler execution. It may benullif the error was raised directly without an underlying Throwable. -
jo
JsonObject jo
The rawJsonObjectthat was being processed at the time the error occurred.
This field is useful for debugging. It often contains the browser's CDP response that the Java code failed to parse or recognize. It may benullif the failure was unrelated to message content (e.g., a runtime exception). -
message
java.lang.String message
A descriptive message explaining the nature of the internal error.
This string is almost always provided by the handler logic itself to contextualize what went wrong β e.g., "Unrecognized ID field", "Unexpected type in CDP response", or "Missing 'method' property in event dispatch."
-
-
Class Torello.Browser.RDPException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.Script extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
commandName
java.lang.String commandName
The Name of the Web-Browser Command that is being executed by thisScript. -
domain
Domains domain
The Browser or Java-Script Domain which maintains the external browser command. -
receiver
java.util.function.Function<JsonObject,RESULT> receiver
This function pointer performs the Json-Binding needed to convert a browser-generatedJsonObjectinto a Java POJO (ultimately having type'RESULT'). -
requestJSONString
java.lang.String requestJSONString
The request-Stringthat will be sent over the Web-Socket -
resultClass
java.lang.Class<RESULT> resultClass
The Java-Class/ Type of the post-processed object which is ultimately returned by this browser command. Thispublic, finalfield is nothing more than a "reified" Java Generic Type-Parameter for this class'<RESULT>generic type.
-
-
Class Torello.Browser.TypeAssignmentException extends WrongMethodException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
descriptor
AbstractDescriptor descriptor
The descriptor whose builder property was being assigned when this exception was thrown.π This field is provided as a programmer convenience, to make debugging and error investigation easier. -
expectedType
byte expectedType
TheCDPTypesbyte constant describing the type expected by the builder.π This value will be equal to one of the constants listed inCDPTypes.- See Also:
CDPTypes
-
name
java.lang.String name
The name of the builder property being assigned when this exception was thrown.π‘ For aTypeBuilder, this name identifies a field in the CDP type being built. For aCommandBuilder, it identifies one of the command's input parameters. -
providedType
byte providedType
TheCDPTypesbyte constant describing the type implied by the accept method that was invoked.π This value identifies the Java/CDP type that the programmer attempted to assign.- See Also:
CDPTypes
-
-
Class Torello.Browser.TypeBuilder extends AbstractBuilder<CDP_TYPE extends BaseType<CDP_TYPE>> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.UncheckedExecutionException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.UncheckedInterruptedException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.UncheckedTimeoutException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.UnknownPropertyException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.UnknownWebSocketsError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.UnrecognizedCTABError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.UnrecognizedCTASError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.Browser.BrowserAPI
-
Class Torello.Browser.BrowserAPI.Accessibility.AXNode extends BaseType<Accessibility.AXNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendDOMNodeId
java.lang.Integer backendDOMNodeId
The backend ID for the associated DOM node, if any.
OPTIONAL -
childIds
java.lang.String[] childIds
IDs for each of this node's child nodes.
OPTIONAL -
chromeRole
Accessibility.AXValue chromeRole
ThisNode's Chrome raw role.
OPTIONAL -
description
Accessibility.AXValue description
The accessible description for thisNode.
OPTIONAL -
frameId
java.lang.String frameId
The frame ID for the frame associated with this nodes document.
OPTIONAL -
ignored
boolean ignored
Whether this node is ignored for accessibility -
ignoredReasons
Accessibility.AXProperty[] ignoredReasons
Collection of reasons why this node is hidden.
OPTIONAL -
name
Accessibility.AXValue name
The accessible name for thisNode.
OPTIONAL -
nodeId
java.lang.String nodeId
Unique identifier for this node. -
parentId
java.lang.String parentId
ID for this node's parent.
OPTIONAL -
properties
Accessibility.AXProperty[] properties
All other properties
OPTIONAL -
role
Accessibility.AXValue role
ThisNode's role, whether explicit or implicit.
OPTIONAL -
value
Accessibility.AXValue value
The value for thisNode.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Accessibility.AXProperty extends BaseType<Accessibility.AXProperty> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
The name of this property.- See Also:
BaseType.enumStrList(String)
-
value
Accessibility.AXValue value
The value of this property.
-
-
Class Torello.Browser.BrowserAPI.Accessibility.AXRelatedNode extends BaseType<Accessibility.AXRelatedNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendDOMNodeId
int backendDOMNodeId
The BackendNodeId of the related DOM node. -
idref
java.lang.String idref
The IDRef value provided, if any.
OPTIONAL -
text
java.lang.String text
The text alternative of this node in the current context.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Accessibility.AXValue extends BaseType<Accessibility.AXValue> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
relatedNodes
Accessibility.AXRelatedNode[] relatedNodes
One or more related nodes, if applicable.
OPTIONAL -
sources
Accessibility.AXValueSource[] sources
The sources which contributed to the computation of this property.
OPTIONAL -
type
java.lang.String type
The type of this value.- See Also:
BaseType.enumStrList(String)
-
value
JsonValue value
The computed value of this property.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Accessibility.AXValueSource extends BaseType<Accessibility.AXValueSource> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
attribute
java.lang.String attribute
The name of the relevant attribute, if any.
OPTIONAL -
attributeValue
Accessibility.AXValue attributeValue
The value of the relevant attribute, if any.
OPTIONAL -
invalid
java.lang.Boolean invalid
Whether the value for this property is invalid.
OPTIONAL -
invalidReason
java.lang.String invalidReason
Reason for the value being invalid, if it is.
OPTIONAL -
nativeSource
java.lang.String nativeSource
The native markup source for this value, e.g. aelement.<label>
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
nativeSourceValue
Accessibility.AXValue nativeSourceValue
The value, such as a node or node list, of the native source.
OPTIONAL -
superseded
java.lang.Boolean superseded
Whether this source is superseded by a higher priority source.
OPTIONAL -
type
java.lang.String type
What type of source this is.- See Also:
BaseType.enumStrList(String)
-
value
Accessibility.AXValue value
The value of this property source.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Accessibility.loadComplete extends BrowserEvent<Accessibility.loadComplete> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
root
Accessibility.AXNode root
New document root node.
-
-
Class Torello.Browser.BrowserAPI.Accessibility.nodesUpdated extends BrowserEvent<Accessibility.nodesUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodes
Accessibility.AXNode[] nodes
Updated node data.
-
-
Class Torello.Browser.BrowserAPI.Animation._Animation extends BaseType<Animation._Animation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cssId
java.lang.String cssId
A unique ID forAnimationrepresenting the sources that triggered this CSS animation/transition.
OPTIONAL -
currentTime
java.lang.Number currentTime
Animation's current time. -
id
java.lang.String id
Animation's id. -
name
java.lang.String name
Animation's name. -
pausedState
boolean pausedState
Animation's internal paused state. -
playbackRate
java.lang.Number playbackRate
Animation's playback rate. -
playState
java.lang.String playState
Animation's play state. -
source
Animation.AnimationEffect source
Animation's source animation node.
OPTIONAL -
startTime
java.lang.Number startTime
Animation's start time. Milliseconds for time based animations and percentage [0 - 100] for scroll driven animations (i.e. when viewOrScrollTimeline exists). -
type
java.lang.String type
Animation type ofAnimation.- See Also:
BaseType.enumStrList(String)
-
viewOrScrollTimeline
Animation.ViewOrScrollTimeline viewOrScrollTimeline
View or scroll timeline
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Animation.animationCanceled extends BrowserEvent<Animation.animationCanceled> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
Id of the animation that was cancelled.
-
-
Class Torello.Browser.BrowserAPI.Animation.animationCreated extends BrowserEvent<Animation.animationCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
Id of the animation that was created.
-
-
Class Torello.Browser.BrowserAPI.Animation.AnimationEffect extends BaseType<Animation.AnimationEffect> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
java.lang.Integer backendNodeId
AnimationEffect's target node.
OPTIONAL -
delay
java.lang.Number delay
AnimationEffect's delay. -
direction
java.lang.String direction
AnimationEffect's playback direction. -
duration
java.lang.Number duration
AnimationEffect's iteration duration. Milliseconds for time based animations and percentage [0 - 100] for scroll driven animations (i.e. when viewOrScrollTimeline exists). -
easing
java.lang.String easing
AnimationEffect's timing function. -
endDelay
java.lang.Number endDelay
AnimationEffect's end delay. -
fill
java.lang.String fill
AnimationEffect's fill mode. -
iterations
java.lang.Number iterations
AnimationEffect's iterations. -
iterationStart
java.lang.Number iterationStart
AnimationEffect's iteration start. -
keyframesRule
Animation.KeyframesRule keyframesRule
AnimationEffect's keyframes.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Animation.animationStarted extends BrowserEvent<Animation.animationStarted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
animation
Animation._Animation animation
_Animation that was started.
-
-
Class Torello.Browser.BrowserAPI.Animation.animationUpdated extends BrowserEvent<Animation.animationUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
animation
Animation._Animation animation
_Animation that was updated.
-
-
Class Torello.Browser.BrowserAPI.Animation.KeyframesRule extends BaseType<Animation.KeyframesRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
keyframes
Animation.KeyframeStyle[] keyframes
List of animation keyframes. -
name
java.lang.String name
CSS keyframed animation's name.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Animation.KeyframeStyle extends BaseType<Animation.KeyframeStyle> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
easing
java.lang.String easing
AnimationEffect's timing function. -
offset
java.lang.String offset
Keyframe's time offset.
-
-
Class Torello.Browser.BrowserAPI.Animation.ViewOrScrollTimeline extends BaseType<Animation.ViewOrScrollTimeline> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
axis
java.lang.String axis
Orientation of the scroll- See Also:
BaseType.enumStrList(String)
-
endOffset
java.lang.Number endOffset
Represents the ending scroll position of the timeline as a length offset in pixels from scroll origin.
OPTIONAL -
sourceNodeId
java.lang.Integer sourceNodeId
Scroll container node
OPTIONAL -
startOffset
java.lang.Number startOffset
Represents the starting scroll position of the timeline as a length offset in pixels from scroll origin.
OPTIONAL -
subjectNodeId
java.lang.Integer subjectNodeId
The element whose principal box's visibility in the scrollport defined the progress of the timeline. Does not exist for animations with ScrollTimeline
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Audits.AffectedCookie extends BaseType<Audits.AffectedCookie> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
domain
java.lang.String domain
[No Description Provided by Google] -
name
java.lang.String name
The following three properties uniquely identify a cookie -
path
java.lang.String path
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.AffectedFrame extends BaseType<Audits.AffectedFrame> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.AffectedRequest extends BaseType<Audits.AffectedRequest> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestId
java.lang.String requestId
The unique request id.
OPTIONAL -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.AttributionReportingIssueDetails extends BaseType<Audits.AttributionReportingIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
invalidParameter
java.lang.String invalidParameter
[No Description Provided by Google]
OPTIONAL -
request
Audits.AffectedRequest request
[No Description Provided by Google]
OPTIONAL -
violatingNodeId
java.lang.Integer violatingNodeId
[No Description Provided by Google]
OPTIONAL -
violationType
java.lang.String violationType
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.BlockedByResponseIssueDetails extends BaseType<Audits.BlockedByResponseIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blockedFrame
Audits.AffectedFrame blockedFrame
[No Description Provided by Google]
OPTIONAL -
parentFrame
Audits.AffectedFrame parentFrame
[No Description Provided by Google]
OPTIONAL -
reason
java.lang.String reason
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
request
Audits.AffectedRequest request
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.BounceTrackingIssueDetails extends BaseType<Audits.BounceTrackingIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
trackingSites
java.lang.String[] trackingSites
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.ClientHintIssueDetails extends BaseType<Audits.ClientHintIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
clientHintIssueReason
java.lang.String clientHintIssueReason
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
sourceCodeLocation
Audits.SourceCodeLocation sourceCodeLocation
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.ContentSecurityPolicyIssueDetails extends BaseType<Audits.ContentSecurityPolicyIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blockedURL
java.lang.String blockedURL
The url not included in allowed sources.
OPTIONAL -
contentSecurityPolicyViolationType
java.lang.String contentSecurityPolicyViolationType
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
frameAncestor
Audits.AffectedFrame frameAncestor
[No Description Provided by Google]
OPTIONAL -
isReportOnly
boolean isReportOnly
[No Description Provided by Google] -
sourceCodeLocation
Audits.SourceCodeLocation sourceCodeLocation
[No Description Provided by Google]
OPTIONAL -
violatedDirective
java.lang.String violatedDirective
Specific directive that is violated, causing the CSP issue. -
violatingNodeId
java.lang.Integer violatingNodeId
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Audits.CookieDeprecationMetadataIssueDetails extends BaseType<Audits.CookieDeprecationMetadataIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
allowedSites
java.lang.String[] allowedSites
[No Description Provided by Google] -
isOptOutTopLevel
boolean isOptOutTopLevel
[No Description Provided by Google] -
operation
java.lang.String operation
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
optOutPercentage
java.lang.Number optOutPercentage
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.CookieIssueDetails extends BaseType<Audits.CookieIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cookie
Audits.AffectedCookie cookie
If AffectedCookie is not set then rawCookieLine contains the raw Set-Cookie header string. This hints at a problem where the cookie line is syntactically or semantically malformed in a way that no valid cookie could be created.
OPTIONAL -
cookieExclusionReasons
java.lang.String[] cookieExclusionReasons
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
cookieUrl
java.lang.String cookieUrl
[No Description Provided by Google]
OPTIONAL -
cookieWarningReasons
java.lang.String[] cookieWarningReasons
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
insight
Audits.CookieIssueInsight insight
The recommended solution to the issue.
OPTIONAL -
operation
java.lang.String operation
Optionally identifies the site-for-cookies and the cookie url, which may be used by the front-end as additional context.- See Also:
BaseType.enumStrList(String)
-
rawCookieLine
java.lang.String rawCookieLine
[No Description Provided by Google]
OPTIONAL -
request
Audits.AffectedRequest request
[No Description Provided by Google]
OPTIONAL -
siteForCookies
java.lang.String siteForCookies
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Audits.CookieIssueInsight extends BaseType<Audits.CookieIssueInsight> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
tableEntryUrl
java.lang.String tableEntryUrl
Link to table entry in third-party cookie migration readiness list.
OPTIONAL -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.CorsIssueDetails extends BaseType<Audits.CorsIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
clientSecurityState
Network.ClientSecurityState clientSecurityState
[No Description Provided by Google]
OPTIONAL -
corsErrorStatus
Network.CorsErrorStatus corsErrorStatus
[No Description Provided by Google] -
initiatorOrigin
java.lang.String initiatorOrigin
[No Description Provided by Google]
OPTIONAL -
isWarning
boolean isWarning
[No Description Provided by Google] -
location
Audits.SourceCodeLocation location
[No Description Provided by Google]
OPTIONAL -
request
Audits.AffectedRequest request
[No Description Provided by Google] -
resourceIPAddressSpace
java.lang.String resourceIPAddressSpace
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.DeprecationIssueDetails extends BaseType<Audits.DeprecationIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
affectedFrame
Audits.AffectedFrame affectedFrame
[No Description Provided by Google]
OPTIONAL -
sourceCodeLocation
Audits.SourceCodeLocation sourceCodeLocation
[No Description Provided by Google] -
type
java.lang.String type
One of the deprecation names from third_party/blink/renderer/core/frame/deprecation/deprecation.json5
-
-
Class Torello.Browser.BrowserAPI.Audits.ElementAccessibilityIssueDetails extends BaseType<Audits.ElementAccessibilityIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
elementAccessibilityIssueReason
java.lang.String elementAccessibilityIssueReason
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
hasDisallowedAttributes
boolean hasDisallowedAttributes
[No Description Provided by Google] -
nodeId
int nodeId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.FailedRequestInfo extends BaseType<Audits.FailedRequestInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
failureMessage
java.lang.String failureMessage
The failure message for the failed request. -
requestId
java.lang.String requestId
[No Description Provided by Google]
OPTIONAL -
url
java.lang.String url
The URL that failed to load.
-
-
Class Torello.Browser.BrowserAPI.Audits.FederatedAuthRequestIssueDetails extends BaseType<Audits.FederatedAuthRequestIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
federatedAuthRequestIssueReason
java.lang.String federatedAuthRequestIssueReason
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.FederatedAuthUserInfoRequestIssueDetails extends BaseType<Audits.FederatedAuthUserInfoRequestIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
federatedAuthUserInfoRequestIssueReason
java.lang.String federatedAuthUserInfoRequestIssueReason
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.GenericIssueDetails extends BaseType<Audits.GenericIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorType
java.lang.String errorType
Issues with the same errorType are aggregated in the frontend.- See Also:
BaseType.enumStrList(String)
-
frameId
java.lang.String frameId
[No Description Provided by Google]
OPTIONAL -
request
Audits.AffectedRequest request
[No Description Provided by Google]
OPTIONAL -
violatingNodeAttribute
java.lang.String violatingNodeAttribute
[No Description Provided by Google]
OPTIONAL -
violatingNodeId
java.lang.Integer violatingNodeId
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Audits.getEncodedResponse$$RET extends BaseType<Audits.getEncodedResponse$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
body
java.lang.String body
The encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string when passed over JSON)
OPTIONAL -
encodedSize
int encodedSize
Size after re-encoding. -
originalSize
int originalSize
Size before re-encoding.
-
-
Class Torello.Browser.BrowserAPI.Audits.HeavyAdIssueDetails extends BaseType<Audits.HeavyAdIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frame
Audits.AffectedFrame frame
The frame that was blocked. -
reason
java.lang.String reason
The reason the ad was blocked, total network or cpu or peak cpu.- See Also:
BaseType.enumStrList(String)
-
resolution
java.lang.String resolution
The resolution status, either blocking the content or warning.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.InspectorIssue extends BaseType<Audits.InspectorIssue> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
code
java.lang.String code
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
details
Audits.InspectorIssueDetails details
[No Description Provided by Google] -
issueId
java.lang.String issueId
A unique id for this issue. May be omitted if no other entity (e.g. exception, CDP message, etc.) is referencing this issue.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Audits.InspectorIssueDetails extends BaseType<Audits.InspectorIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
attributionReportingIssueDetails
Audits.AttributionReportingIssueDetails attributionReportingIssueDetails
[No Description Provided by Google]
OPTIONAL -
blockedByResponseIssueDetails
Audits.BlockedByResponseIssueDetails blockedByResponseIssueDetails
[No Description Provided by Google]
OPTIONAL -
bounceTrackingIssueDetails
Audits.BounceTrackingIssueDetails bounceTrackingIssueDetails
[No Description Provided by Google]
OPTIONAL -
clientHintIssueDetails
Audits.ClientHintIssueDetails clientHintIssueDetails
[No Description Provided by Google]
OPTIONAL -
contentSecurityPolicyIssueDetails
Audits.ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails
[No Description Provided by Google]
OPTIONAL -
cookieDeprecationMetadataIssueDetails
Audits.CookieDeprecationMetadataIssueDetails cookieDeprecationMetadataIssueDetails
[No Description Provided by Google]
OPTIONAL -
cookieIssueDetails
Audits.CookieIssueDetails cookieIssueDetails
[No Description Provided by Google]
OPTIONAL -
corsIssueDetails
Audits.CorsIssueDetails corsIssueDetails
[No Description Provided by Google]
OPTIONAL -
deprecationIssueDetails
Audits.DeprecationIssueDetails deprecationIssueDetails
[No Description Provided by Google]
OPTIONAL -
elementAccessibilityIssueDetails
Audits.ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
[No Description Provided by Google]
OPTIONAL -
federatedAuthRequestIssueDetails
Audits.FederatedAuthRequestIssueDetails federatedAuthRequestIssueDetails
[No Description Provided by Google]
OPTIONAL -
federatedAuthUserInfoRequestIssueDetails
Audits.FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails
[No Description Provided by Google]
OPTIONAL -
genericIssueDetails
Audits.GenericIssueDetails genericIssueDetails
[No Description Provided by Google]
OPTIONAL -
heavyAdIssueDetails
Audits.HeavyAdIssueDetails heavyAdIssueDetails
[No Description Provided by Google]
OPTIONAL -
lowTextContrastIssueDetails
Audits.LowTextContrastIssueDetails lowTextContrastIssueDetails
[No Description Provided by Google]
OPTIONAL -
mixedContentIssueDetails
Audits.MixedContentIssueDetails mixedContentIssueDetails
[No Description Provided by Google]
OPTIONAL -
navigatorUserAgentIssueDetails
Audits.NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
[No Description Provided by Google]
OPTIONALDEPRECATED -
partitioningBlobURLIssueDetails
Audits.PartitioningBlobURLIssueDetails partitioningBlobURLIssueDetails
[No Description Provided by Google]
OPTIONAL -
propertyRuleIssueDetails
Audits.PropertyRuleIssueDetails propertyRuleIssueDetails
[No Description Provided by Google]
OPTIONAL -
quirksModeIssueDetails
Audits.QuirksModeIssueDetails quirksModeIssueDetails
[No Description Provided by Google]
OPTIONAL -
sharedArrayBufferIssueDetails
Audits.SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails
[No Description Provided by Google]
OPTIONAL -
sharedDictionaryIssueDetails
Audits.SharedDictionaryIssueDetails sharedDictionaryIssueDetails
[No Description Provided by Google]
OPTIONAL -
sriMessageSignatureIssueDetails
Audits.SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
[No Description Provided by Google]
OPTIONAL -
stylesheetLoadingIssueDetails
Audits.StylesheetLoadingIssueDetails stylesheetLoadingIssueDetails
[No Description Provided by Google]
OPTIONAL -
unencodedDigestIssueDetails
Audits.UnencodedDigestIssueDetails unencodedDigestIssueDetails
[No Description Provided by Google]
OPTIONAL -
userReidentificationIssueDetails
Audits.UserReidentificationIssueDetails userReidentificationIssueDetails
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Audits.issueAdded extends BrowserEvent<Audits.issueAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
issue
Audits.InspectorIssue issue
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.LowTextContrastIssueDetails extends BaseType<Audits.LowTextContrastIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contrastRatio
java.lang.Number contrastRatio
[No Description Provided by Google] -
fontSize
java.lang.String fontSize
[No Description Provided by Google] -
fontWeight
java.lang.String fontWeight
[No Description Provided by Google] -
thresholdAA
java.lang.Number thresholdAA
[No Description Provided by Google] -
thresholdAAA
java.lang.Number thresholdAAA
[No Description Provided by Google] -
violatingNodeId
int violatingNodeId
[No Description Provided by Google] -
violatingNodeSelector
java.lang.String violatingNodeSelector
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.MixedContentIssueDetails extends BaseType<Audits.MixedContentIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frame
Audits.AffectedFrame frame
Optional because not every mixed content issue is necessarily linked to a frame.
OPTIONAL -
insecureURL
java.lang.String insecureURL
The unsafe http url causing the mixed content issue. -
mainResourceURL
java.lang.String mainResourceURL
The url responsible for the call to an unsafe url. -
request
Audits.AffectedRequest request
The mixed content request. Does not always exist (e.g. for unsafe form submission urls).
OPTIONAL -
resolutionStatus
java.lang.String resolutionStatus
The way the mixed content issue is being resolved.- See Also:
BaseType.enumStrList(String)
-
resourceType
java.lang.String resourceType
The type of resource causing the mixed content issue (css, js, iframe, form,...). Marked as optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced by network::mojom::RequestDestination
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.NavigatorUserAgentIssueDetails extends BaseType<Audits.NavigatorUserAgentIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
location
Audits.SourceCodeLocation location
[No Description Provided by Google]
OPTIONAL -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.PartitioningBlobURLIssueDetails extends BaseType<Audits.PartitioningBlobURLIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
partitioningBlobURLInfo
java.lang.String partitioningBlobURLInfo
Additional information about the Partitioning Blob URL issue.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
The BlobURL that failed to load.
-
-
Class Torello.Browser.BrowserAPI.Audits.PropertyRuleIssueDetails extends BaseType<Audits.PropertyRuleIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
propertyRuleIssueReason
java.lang.String propertyRuleIssueReason
Reason why the property rule was discarded.- See Also:
BaseType.enumStrList(String)
-
propertyValue
java.lang.String propertyValue
The value of the property rule property that failed to parse
OPTIONAL -
sourceCodeLocation
Audits.SourceCodeLocation sourceCodeLocation
Source code position of the property rule.
-
-
Class Torello.Browser.BrowserAPI.Audits.QuirksModeIssueDetails extends BaseType<Audits.QuirksModeIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
documentNodeId
int documentNodeId
[No Description Provided by Google] -
frameId
java.lang.String frameId
[No Description Provided by Google] -
isLimitedQuirksMode
boolean isLimitedQuirksMode
If false, it means the document's mode is "quirks" instead of "limited-quirks". -
loaderId
java.lang.String loaderId
[No Description Provided by Google] -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.SharedArrayBufferIssueDetails extends BaseType<Audits.SharedArrayBufferIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isWarning
boolean isWarning
[No Description Provided by Google] -
sourceCodeLocation
Audits.SourceCodeLocation sourceCodeLocation
[No Description Provided by Google] -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.SharedDictionaryIssueDetails extends BaseType<Audits.SharedDictionaryIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
request
Audits.AffectedRequest request
[No Description Provided by Google] -
sharedDictionaryError
java.lang.String sharedDictionaryError
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.SourceCodeLocation extends BaseType<Audits.SourceCodeLocation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
int columnNumber
[No Description Provided by Google] -
lineNumber
int lineNumber
[No Description Provided by Google] -
scriptId
java.lang.String scriptId
[No Description Provided by Google]
OPTIONAL -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.SRIMessageSignatureIssueDetails extends BaseType<Audits.SRIMessageSignatureIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
error
java.lang.String error
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
integrityAssertions
java.lang.String[] integrityAssertions
[No Description Provided by Google] -
request
Audits.AffectedRequest request
[No Description Provided by Google] -
signatureBase
java.lang.String signatureBase
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.StylesheetLoadingIssueDetails extends BaseType<Audits.StylesheetLoadingIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
failedRequestInfo
Audits.FailedRequestInfo failedRequestInfo
Contains additional info when the failure was due to a request.
OPTIONAL -
sourceCodeLocation
Audits.SourceCodeLocation sourceCodeLocation
Source code position that referenced the failing stylesheet. -
styleSheetLoadingIssueReason
java.lang.String styleSheetLoadingIssueReason
Reason why the stylesheet couldn't be loaded.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Audits.UnencodedDigestIssueDetails extends BaseType<Audits.UnencodedDigestIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
error
java.lang.String error
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
request
Audits.AffectedRequest request
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Audits.UserReidentificationIssueDetails extends BaseType<Audits.UserReidentificationIssueDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
request
Audits.AffectedRequest request
Applies to BlockedFrameNavigation and BlockedSubresource issue types.
OPTIONAL -
sourceCodeLocation
Audits.SourceCodeLocation sourceCodeLocation
Applies to NoisedCanvasReadback issue type.
OPTIONAL -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Autofill.Address extends BaseType<Autofill.Address> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fields
Autofill.AddressField[] fields
fields and values defining an address.
-
-
Class Torello.Browser.BrowserAPI.Autofill.AddressField extends BaseType<Autofill.AddressField> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
address field name, for example GIVEN_NAME. -
value
java.lang.String value
address field value, for example Jon Doe.
-
-
Class Torello.Browser.BrowserAPI.Autofill.AddressFields extends BaseType<Autofill.AddressFields> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fields
Autofill.AddressField[] fields
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Autofill.addressFormFilled extends BrowserEvent<Autofill.addressFormFilled> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
addressUi
Autofill.AddressUI addressUi
An UI representation of the address used to fill the form. Consists of a 2D array where each child represents an address/profile line. -
filledFields
Autofill.FilledField[] filledFields
Information about the fields that were filled
-
-
Class Torello.Browser.BrowserAPI.Autofill.AddressUI extends BaseType<Autofill.AddressUI> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
addressFields
Autofill.AddressFields[] addressFields
A two dimension array containing the representation of values from an address profile.
-
-
Class Torello.Browser.BrowserAPI.Autofill.CreditCard extends BaseType<Autofill.CreditCard> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cvc
java.lang.String cvc
3-digit card verification code. -
expiryMonth
java.lang.String expiryMonth
2-digit expiry month. -
expiryYear
java.lang.String expiryYear
4-digit expiry year. -
name
java.lang.String name
Name of the credit card owner. -
number
java.lang.String number
16-digit credit card number.
-
-
Class Torello.Browser.BrowserAPI.Autofill.FilledField extends BaseType<Autofill.FilledField> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
autofillType
java.lang.String autofillType
The actual field type, e.g FAMILY_NAME -
fieldId
int fieldId
The form field's DOM node -
fillingStrategy
java.lang.String fillingStrategy
The filling strategy- See Also:
BaseType.enumStrList(String)
-
frameId
java.lang.String frameId
The frame the field belongs to -
htmlType
java.lang.String htmlType
The type of the field, e.g text, password etc. -
id
java.lang.String id
the html id -
name
java.lang.String name
the html name -
value
java.lang.String value
the field value
-
-
Class Torello.Browser.BrowserAPI.BackgroundService.BackgroundServiceEvent extends BaseType<BackgroundService.BackgroundServiceEvent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
eventMetadata
BackgroundService.EventMetadata[] eventMetadata
A list of event-specific information. -
eventName
java.lang.String eventName
A description of the event. -
instanceId
java.lang.String instanceId
An identifier that groups related events together. -
origin
java.lang.String origin
The origin this event belongs to. -
service
java.lang.String service
The Background Service this event belongs to.- See Also:
BaseType.enumStrList(String)
-
serviceWorkerRegistrationId
java.lang.String serviceWorkerRegistrationId
The Service Worker ID that initiated the event. -
storageKey
java.lang.String storageKey
Storage key this event belongs to. -
timestamp
java.lang.Number timestamp
Timestamp of the event (in seconds).
-
-
Class Torello.Browser.BrowserAPI.BackgroundService.backgroundServiceEventReceived extends BrowserEvent<BackgroundService.backgroundServiceEventReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backgroundServiceEvent
BackgroundService.BackgroundServiceEvent backgroundServiceEvent
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.BackgroundService.EventMetadata extends BaseType<BackgroundService.EventMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
java.lang.String key
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.BackgroundService.recordingStateChanged extends BrowserEvent<BackgroundService.recordingStateChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isRecording
boolean isRecording
[No Description Provided by Google] -
service
java.lang.String service
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.BluetoothEmulation.characteristicOperationReceived extends BrowserEvent<BluetoothEmulation.characteristicOperationReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
characteristicId
java.lang.String characteristicId
[No Description Provided by Google] -
data
java.lang.String data
[No Description Provided by Google]
OPTIONAL -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
writeType
java.lang.String writeType
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.BluetoothEmulation.CharacteristicProperties extends BaseType<BluetoothEmulation.CharacteristicProperties> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
authenticatedSignedWrites
java.lang.Boolean authenticatedSignedWrites
[No Description Provided by Google]
OPTIONAL -
broadcast
java.lang.Boolean broadcast
[No Description Provided by Google]
OPTIONAL -
extendedProperties
java.lang.Boolean extendedProperties
[No Description Provided by Google]
OPTIONAL -
indicate
java.lang.Boolean indicate
[No Description Provided by Google]
OPTIONAL -
notify
java.lang.Boolean notify
[No Description Provided by Google]
OPTIONAL -
read
java.lang.Boolean read
[No Description Provided by Google]
OPTIONAL -
write
java.lang.Boolean write
[No Description Provided by Google]
OPTIONAL -
writeWithoutResponse
java.lang.Boolean writeWithoutResponse
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.BluetoothEmulation.descriptorOperationReceived extends BrowserEvent<BluetoothEmulation.descriptorOperationReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
[No Description Provided by Google]
OPTIONAL -
descriptorId
java.lang.String descriptorId
[No Description Provided by Google] -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.BluetoothEmulation.gattOperationReceived extends BrowserEvent<BluetoothEmulation.gattOperationReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
address
java.lang.String address
[No Description Provided by Google] -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.BluetoothEmulation.ManufacturerData extends BaseType<BluetoothEmulation.ManufacturerData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
Manufacturer-specific data (Encoded as a base64 string when passed over JSON) -
key
int key
Company identifier https://bitbucket.org/bluetooth-SIG/public/src/main/assigned_numbers/company_identifiers/company_identifiers.yaml https://usb.org/developers
-
-
Class Torello.Browser.BrowserAPI.BluetoothEmulation.ScanEntry extends BaseType<BluetoothEmulation.ScanEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
deviceAddress
java.lang.String deviceAddress
[No Description Provided by Google] -
rssi
int rssi
[No Description Provided by Google] -
scanRecord
BluetoothEmulation.ScanRecord scanRecord
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.BluetoothEmulation.ScanRecord extends BaseType<BluetoothEmulation.ScanRecord> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
appearance
java.lang.Integer appearance
Stores the external appearance description of the device.
OPTIONAL -
manufacturerData
BluetoothEmulation.ManufacturerData[] manufacturerData
Key is the company identifier and the value is an array of bytes of manufacturer specific data.
OPTIONAL -
name
java.lang.String name
[No Description Provided by Google]
OPTIONAL -
txPower
java.lang.Integer txPower
Stores the transmission power of a broadcasting device.
OPTIONAL -
uuids
java.lang.String[] uuids
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Browser.Bounds extends BaseType<Browser.Bounds> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
height
java.lang.Integer height
The window height in pixels.
OPTIONAL -
left
java.lang.Integer left
The offset from the left edge of the screen to the window in pixels.
OPTIONAL -
top
java.lang.Integer top
The offset from the top edge of the screen to the window in pixels.
OPTIONAL -
width
java.lang.Integer width
The window width in pixels.
OPTIONAL -
windowState
java.lang.String windowState
The window state. Default to normal.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Browser.Bucket extends BaseType<Browser.Bucket> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
count
int count
Number of samples. -
high
int high
Maximum value (exclusive). -
low
int low
Minimum value (inclusive).
-
-
Class Torello.Browser.BrowserAPI.Browser.downloadProgress extends BrowserEvent<Browser.downloadProgress> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
filePath
java.lang.String filePath
If download is "completed", provides the path of the downloaded file. Depending on the platform, it is not guaranteed to be set, nor the file is guaranteed to exist.
OPTIONALEXPERIMENTAL -
guid
java.lang.String guid
Global unique identifier of the download. -
receivedBytes
java.lang.Number receivedBytes
Total bytes received. -
state
java.lang.String state
Download status.- See Also:
BaseType.enumStrList(String)
-
totalBytes
java.lang.Number totalBytes
Total expected bytes to download.
-
-
Class Torello.Browser.BrowserAPI.Browser.downloadWillBegin extends BrowserEvent<Browser.downloadWillBegin> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that caused the download to begin. -
guid
java.lang.String guid
Global unique identifier of the download. -
suggestedFilename
java.lang.String suggestedFilename
Suggested file name of the resource (the actual name of the file saved on disk may differ). -
url
java.lang.String url
URL of the resource being downloaded.
-
-
Class Torello.Browser.BrowserAPI.Browser.getVersion$$RET extends BaseType<Browser.getVersion$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
jsVersion
java.lang.String jsVersion
V8 version. -
product
java.lang.String product
Product name. -
protocolVersion
java.lang.String protocolVersion
Protocol version. -
revision
java.lang.String revision
Product revision. -
userAgent
java.lang.String userAgent
User-Agent.
-
-
Class Torello.Browser.BrowserAPI.Browser.getWindowForTarget$$RET extends BaseType<Browser.getWindowForTarget$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bounds
Browser.Bounds bounds
Bounds information of the window. When window state is 'minimized', the restored window position and size are returned. -
windowId
int windowId
Browser window id.
-
-
Class Torello.Browser.BrowserAPI.Browser.Histogram extends BaseType<Browser.Histogram> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
buckets
Browser.Bucket[] buckets
Buckets. -
count
int count
Total number of samples. -
name
java.lang.String name
Name. -
sum
int sum
Sum of sample values.
-
-
Class Torello.Browser.BrowserAPI.Browser.PermissionDescriptor extends BaseType<Browser.PermissionDescriptor> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
allowWithoutGesture
java.lang.Boolean allowWithoutGesture
For "fullscreen" permission, must specify allowWithoutGesture:true.
OPTIONAL -
allowWithoutSanitization
java.lang.Boolean allowWithoutSanitization
For "clipboard" permission, may specify allowWithoutSanitization.
OPTIONAL -
name
java.lang.String name
Name of permission. See https://cs.chromium.org/chromium/src/third_party/blink/renderer/modules/permissions/permission_descriptor.idl for valid permission names. -
panTiltZoom
java.lang.Boolean panTiltZoom
For "camera" permission, may specify panTiltZoom.
OPTIONAL -
sysex
java.lang.Boolean sysex
For "midi" permission, may also specify sysex control.
OPTIONAL -
userVisibleOnly
java.lang.Boolean userVisibleOnly
For "push" permission, may specify userVisibleOnly. Note that userVisibleOnly = true is the only currently supported type.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CacheStorage.Cache extends BaseType<CacheStorage.Cache> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cacheId
java.lang.String cacheId
An opaque unique id of the cache. -
cacheName
java.lang.String cacheName
The name of the cache. -
securityOrigin
java.lang.String securityOrigin
Security origin of the cache. -
storageBucket
Storage.StorageBucket storageBucket
Storage bucket of the cache.
OPTIONAL -
storageKey
java.lang.String storageKey
Storage key of the cache.
-
-
Class Torello.Browser.BrowserAPI.CacheStorage.CachedResponse extends BaseType<CacheStorage.CachedResponse> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
body
java.lang.String body
Entry content, base64-encoded. (Encoded as a base64 string when passed over JSON)
-
-
Class Torello.Browser.BrowserAPI.CacheStorage.DataEntry extends BaseType<CacheStorage.DataEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestHeaders
CacheStorage.Header[] requestHeaders
Request headers -
requestMethod
java.lang.String requestMethod
Request method. -
requestURL
java.lang.String requestURL
Request URL. -
responseHeaders
CacheStorage.Header[] responseHeaders
Response headers -
responseStatus
int responseStatus
HTTP response status code. -
responseStatusText
java.lang.String responseStatusText
HTTP response status text. -
responseTime
java.lang.Number responseTime
Number of seconds since epoch. -
responseType
java.lang.String responseType
HTTP response type- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.CacheStorage.Header extends BaseType<CacheStorage.Header> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.CacheStorage.requestEntries$$RET extends BaseType<CacheStorage.requestEntries$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cacheDataEntries
CacheStorage.DataEntry[] cacheDataEntries
Array of object store data entries. -
returnCount
java.lang.Number returnCount
Count of returned entries from this storage. If pathFilter is empty, it is the count of all entries from this storage.
-
-
Class Torello.Browser.BrowserAPI.Cast.issueUpdated extends BrowserEvent<Cast.issueUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
issueMessage
java.lang.String issueMessage
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Cast.Sink extends BaseType<Cast.Sink> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
[No Description Provided by Google] -
name
java.lang.String name
[No Description Provided by Google] -
session
java.lang.String session
Text describing the current session. Present only if there is an active session on the sink.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Cast.sinksUpdated extends BrowserEvent<Cast.sinksUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
sinks
Cast.Sink[] sinks
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.CSS.computedStyleUpdated extends BrowserEvent<CSS.computedStyleUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeId
int nodeId
The node id that has updated computed styles.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSAnimationStyle extends BaseType<CSS.CSSAnimationStyle> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
The name of the animation.
OPTIONAL -
style
CSS.CSSStyle style
The style coming from the animation.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSComputedStyleProperty extends BaseType<CSS.CSSComputedStyleProperty> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Computed style property name. -
value
java.lang.String value
Computed style property value.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSContainerQuery extends BaseType<CSS.CSSContainerQuery> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
logicalAxes
java.lang.String logicalAxes
Optional logical axes queried for the container.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
name
java.lang.String name
Optional name for the container.
OPTIONAL -
physicalAxes
java.lang.String physicalAxes
Optional physical axes queried for the container.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
queriesAnchored
java.lang.Boolean queriesAnchored
true if the query contains anchored() queries.
OPTIONAL -
queriesScrollState
java.lang.Boolean queriesScrollState
true if the query contains scroll-state() queries.
OPTIONAL -
range
CSS.SourceRange range
The associated rule header range in the enclosing stylesheet (if available).
OPTIONAL -
styleSheetId
java.lang.String styleSheetId
Identifier of the stylesheet containing this object (if exists).
OPTIONAL -
text
java.lang.String text
Container query text.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSFontPaletteValuesRule extends BaseType<CSS.CSSFontPaletteValuesRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fontPaletteName
CSS.Value fontPaletteName
Associated font palette name. -
origin
java.lang.String origin
Parent stylesheet's origin.- See Also:
BaseType.enumStrList(String)
-
style
CSS.CSSStyle style
Associated style declaration. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSFunctionConditionNode extends BaseType<CSS.CSSFunctionConditionNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
children
CSS.CSSFunctionNode[] children
Block body. -
conditionText
java.lang.String conditionText
The condition text. -
containerQueries
CSS.CSSContainerQuery containerQueries
Container query for this conditional block. Only one type of condition should be set.
OPTIONAL -
media
CSS.CSSMedia media
Media query for this conditional block. Only one type of condition should be set.
OPTIONAL -
supports
CSS.CSSSupports supports
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSFunctionNode extends BaseType<CSS.CSSFunctionNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
condition
CSS.CSSFunctionConditionNode condition
A conditional block. If set, style should not be set.
OPTIONAL -
style
CSS.CSSStyle style
Values set by this node. If set, condition should not be set.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSFunctionParameter extends BaseType<CSS.CSSFunctionParameter> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
The parameter name. -
type
java.lang.String type
The parameter type.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSFunctionRule extends BaseType<CSS.CSSFunctionRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
children
CSS.CSSFunctionNode[] children
Function body. -
name
CSS.Value name
Name of the function. -
origin
java.lang.String origin
Parent stylesheet's origin.- See Also:
BaseType.enumStrList(String)
-
parameters
CSS.CSSFunctionParameter[] parameters
List of parameters. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSKeyframeRule extends BaseType<CSS.CSSKeyframeRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
keyText
CSS.Value keyText
Associated key text. -
origin
java.lang.String origin
Parent stylesheet's origin.- See Also:
BaseType.enumStrList(String)
-
style
CSS.CSSStyle style
Associated style declaration. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSKeyframesRule extends BaseType<CSS.CSSKeyframesRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
animationName
CSS.Value animationName
Animation name. -
keyframes
CSS.CSSKeyframeRule[] keyframes
List of keyframes.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSLayer extends BaseType<CSS.CSSLayer> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
range
CSS.SourceRange range
The associated rule header range in the enclosing stylesheet (if available).
OPTIONAL -
styleSheetId
java.lang.String styleSheetId
Identifier of the stylesheet containing this object (if exists).
OPTIONAL -
text
java.lang.String text
Layer name.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSLayerData extends BaseType<CSS.CSSLayerData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Layer name. -
order
java.lang.Number order
Layer order. The order determines the order of the layer in the cascade order. A higher number has higher priority in the cascade order. -
subLayers
CSS.CSSLayerData[] subLayers
Direct sub-layers
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSMedia extends BaseType<CSS.CSSMedia> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
mediaList
CSS.MediaQuery[] mediaList
Array of media queries.
OPTIONAL -
range
CSS.SourceRange range
The associated rule (@media or @import) header range in the enclosing stylesheet (if available).
OPTIONAL -
source
java.lang.String source
Source of the media query: "mediaRule" if specified by a @media rule, "importRule" if specified by an @import rule, "linkedSheet" if specified by a "media" attribute in a linked stylesheet's LINK tag, "inlineSheet" if specified by a "media" attribute in an inline stylesheet's STYLE tag.- See Also:
BaseType.enumStrList(String)
-
sourceURL
java.lang.String sourceURL
URL of the document containing the media query description.
OPTIONAL -
styleSheetId
java.lang.String styleSheetId
Identifier of the stylesheet containing this object (if exists).
OPTIONAL -
text
java.lang.String text
Media query text.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSPositionTryRule extends BaseType<CSS.CSSPositionTryRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
active
boolean active
[No Description Provided by Google] -
name
CSS.Value name
The prelude dashed-ident name -
origin
java.lang.String origin
Parent stylesheet's origin.- See Also:
BaseType.enumStrList(String)
-
style
CSS.CSSStyle style
Associated style declaration. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSProperty extends BaseType<CSS.CSSProperty> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
disabled
java.lang.Boolean disabled
Whether the property is disabled by the user (present for source-based properties only).
OPTIONAL -
implicit
java.lang.Boolean implicit
Whether the property is implicit (impliesfalseif absent).
OPTIONAL -
important
java.lang.Boolean important
Whether the property has "!important" annotation (impliesfalseif absent).
OPTIONAL -
longhandProperties
CSS.CSSProperty[] longhandProperties
Parsed longhand components of this property if it is a shorthand. This field will be empty if the given property is not a shorthand.
OPTIONALEXPERIMENTAL -
name
java.lang.String name
The property name. -
parsedOk
java.lang.Boolean parsedOk
Whether the property is understood by the browser (impliestrueif absent).
OPTIONAL -
range
CSS.SourceRange range
The entire property range in the enclosing style declaration (if available).
OPTIONAL -
text
java.lang.String text
The full property text as specified in the style.
OPTIONAL -
value
java.lang.String value
The property value.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSPropertyRegistration extends BaseType<CSS.CSSPropertyRegistration> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
inherits
boolean inherits
[No Description Provided by Google] -
initialValue
CSS.Value initialValue
[No Description Provided by Google]
OPTIONAL -
propertyName
java.lang.String propertyName
[No Description Provided by Google] -
syntax
java.lang.String syntax
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSPropertyRule extends BaseType<CSS.CSSPropertyRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
origin
java.lang.String origin
Parent stylesheet's origin.- See Also:
BaseType.enumStrList(String)
-
propertyName
CSS.Value propertyName
Associated property name. -
style
CSS.CSSStyle style
Associated style declaration. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSRule extends BaseType<CSS.CSSRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
containerQueries
CSS.CSSContainerQuery[] containerQueries
Container query list array (for rules involving container queries). The array enumerates container queries starting with the innermost one, going outwards.
OPTIONALEXPERIMENTAL -
layers
CSS.CSSLayer[] layers
Cascade layer array. Contains the layer hierarchy that this rule belongs to starting with the innermost layer and going outwards.
OPTIONALEXPERIMENTAL -
media
CSS.CSSMedia[] media
Media list array (for rules involving media queries). The array enumerates media queries starting with the innermost one, going outwards.
OPTIONAL -
nestingSelectors
java.lang.String[] nestingSelectors
Array of selectors from ancestor style rules, sorted by distance from the current rule.
OPTIONALEXPERIMENTAL -
origin
java.lang.String origin
Parent stylesheet's origin.- See Also:
BaseType.enumStrList(String)
-
ruleTypes
java.lang.String[] ruleTypes
The array keeps the types of ancestor CSSRules from the innermost going outwards.
OPTIONALEXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
scopes
CSS.CSSScope[] scopes
-
selectorList
CSS.SelectorList selectorList
Rule selector data. -
startingStyles
CSS.CSSStartingStyle[] startingStyles
-
style
CSS.CSSStyle style
Associated style declaration. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL -
supports
CSS.CSSSupports[] supports
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSScope extends BaseType<CSS.CSSScope> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
range
CSS.SourceRange range
The associated rule header range in the enclosing stylesheet (if available).
OPTIONAL -
styleSheetId
java.lang.String styleSheetId
Identifier of the stylesheet containing this object (if exists).
OPTIONAL -
text
java.lang.String text
Scope rule text.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSStartingStyle extends BaseType<CSS.CSSStartingStyle> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
range
CSS.SourceRange range
The associated rule header range in the enclosing stylesheet (if available).
OPTIONAL -
styleSheetId
java.lang.String styleSheetId
Identifier of the stylesheet containing this object (if exists).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSStyle extends BaseType<CSS.CSSStyle> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cssProperties
CSS.CSSProperty[] cssProperties
CSS properties in the style. -
cssText
java.lang.String cssText
Style declaration text (if available).
OPTIONAL -
range
CSS.SourceRange range
Style declaration range in the enclosing stylesheet (if available).
OPTIONAL -
shorthandEntries
CSS.ShorthandEntry[] shorthandEntries
Computed values for all shorthands found in the style. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSStyleSheetHeader extends BaseType<CSS.CSSStyleSheetHeader> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
disabled
boolean disabled
Denotes whether the stylesheet is disabled. -
endColumn
java.lang.Number endColumn
Column offset of the end of the stylesheet within the resource (zero based). -
endLine
java.lang.Number endLine
Line offset of the end of the stylesheet within the resource (zero based). -
frameId
java.lang.String frameId
Owner frame identifier. -
hasSourceURL
java.lang.Boolean hasSourceURL
Whether the sourceURL field value comes from the sourceURL comment.
OPTIONAL -
isConstructed
boolean isConstructed
True if this stylesheet is created through new CSSStyleSheet() or imported as a CSS module script. -
isInline
boolean isInline
Whether this stylesheet is created for STYLE tag by parser. This flag is not set for document.written STYLE tags. -
isMutable
boolean isMutable
Whether this stylesheet is mutable. Inline stylesheets become mutable after they have been modified via CSSOM API.element's stylesheets become mutable only if DevTools modifies them. Constructed stylesheets (new CSSStyleSheet()) are mutable immediately after creation.<link> -
length
java.lang.Number length
Size of the content (in characters). -
loadingFailed
java.lang.Boolean loadingFailed
If the style sheet was loaded from a network resource, this indicates when the resource failed to load
OPTIONALEXPERIMENTAL -
origin
java.lang.String origin
Stylesheet origin.- See Also:
BaseType.enumStrList(String)
-
ownerNode
java.lang.Integer ownerNode
The backend id for the owner node of the stylesheet.
OPTIONAL -
sourceMapURL
java.lang.String sourceMapURL
URL of source map associated with the stylesheet (if any).
OPTIONAL -
sourceURL
java.lang.String sourceURL
Stylesheet resource URL. Empty if this is a constructed stylesheet created using new CSSStyleSheet() (but non-empty if this is a constructed stylesheet imported as a CSS module script). -
startColumn
java.lang.Number startColumn
Column offset of the stylesheet within the resource (zero based). -
startLine
java.lang.Number startLine
Line offset of the stylesheet within the resource (zero based). -
styleSheetId
java.lang.String styleSheetId
The stylesheet identifier. -
title
java.lang.String title
Stylesheet title.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSSupports extends BaseType<CSS.CSSSupports> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
active
boolean active
Whether the supports condition is satisfied. -
range
CSS.SourceRange range
The associated rule header range in the enclosing stylesheet (if available).
OPTIONAL -
styleSheetId
java.lang.String styleSheetId
Identifier of the stylesheet containing this object (if exists).
OPTIONAL -
text
java.lang.String text
Supports rule text.
-
-
Class Torello.Browser.BrowserAPI.CSS.CSSTryRule extends BaseType<CSS.CSSTryRule> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
origin
java.lang.String origin
Parent stylesheet's origin.- See Also:
BaseType.enumStrList(String)
-
style
CSS.CSSStyle style
Associated style declaration. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.FontFace extends BaseType<CSS.FontFace> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fontDisplay
java.lang.String fontDisplay
The font-display. -
fontFamily
java.lang.String fontFamily
The font-family. -
fontStretch
java.lang.String fontStretch
The font-stretch. -
fontStyle
java.lang.String fontStyle
The font-style. -
fontVariant
java.lang.String fontVariant
The font-variant. -
fontVariationAxes
CSS.FontVariationAxis[] fontVariationAxes
Available variation settings (a.k.a. "axes").
OPTIONAL -
fontWeight
java.lang.String fontWeight
The font-weight. -
platformFontFamily
java.lang.String platformFontFamily
The resolved platform font family -
src
java.lang.String src
The src. -
unicodeRange
java.lang.String unicodeRange
The unicode-range.
-
-
Class Torello.Browser.BrowserAPI.CSS.fontsUpdated extends BrowserEvent<CSS.fontsUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
font
CSS.FontFace font
The web font that has loaded.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.FontVariationAxis extends BaseType<CSS.FontVariationAxis> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
defaultValue
java.lang.Number defaultValue
The default value. -
maxValue
java.lang.Number maxValue
The maximum value (inclusive) the font supports for this tag. -
minValue
java.lang.Number minValue
The minimum value (inclusive) the font supports for this tag. -
name
java.lang.String name
Human-readable variation name in the default language (normally, "en"). -
tag
java.lang.String tag
The font-variation-setting tag (a.k.a. "axis tag").
-
-
Class Torello.Browser.BrowserAPI.CSS.getAnimatedStylesForNode$$RET extends BaseType<CSS.getAnimatedStylesForNode$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
animationStyles
CSS.CSSAnimationStyle[] animationStyles
Styles coming from animations.
OPTIONAL -
inherited
CSS.InheritedAnimatedStyleEntry[] inherited
Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.
OPTIONAL -
transitionsStyle
CSS.CSSStyle transitionsStyle
Style coming from transitions.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.getBackgroundColors$$RET extends BaseType<CSS.getBackgroundColors$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backgroundColors
java.lang.String[] backgroundColors
The range of background colors behind this element, if it contains any visible text. If no visible text is present, this will be undefined. In the case of a flat background color, this will consist of simply that color. In the case of a gradient, this will consist of each of the color stops. For anything more complicated, this will be an empty array. Images will be ignored (as if the image had failed to load).
OPTIONAL -
computedFontSize
java.lang.String computedFontSize
The computed font size for this node, as a CSS computed value string (e.g. '12px').
OPTIONAL -
computedFontWeight
java.lang.String computedFontWeight
The computed font weight for this node, as a CSS computed value string (e.g. 'normal' or '100').
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.getInlineStylesForNode$$RET extends BaseType<CSS.getInlineStylesForNode$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
attributesStyle
CSS.CSSStyle attributesStyle
Attribute-defined element style (e.g. resulting from "width=20 height=100%").
OPTIONAL -
inlineStyle
CSS.CSSStyle inlineStyle
Inline style for the specified DOM node.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.getMatchedStylesForNode$$RET extends BaseType<CSS.getMatchedStylesForNode$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
activePositionFallbackIndex
java.lang.Integer activePositionFallbackIndex
Index of the active fallback in the applied position-try-fallback property, will not be set if there is no active position-try fallback.
OPTIONAL -
attributesStyle
CSS.CSSStyle attributesStyle
Attribute-defined element style (e.g. resulting from "width=20 height=100%").
OPTIONAL -
cssFontPaletteValuesRule
CSS.CSSFontPaletteValuesRule cssFontPaletteValuesRule
A font-palette-values rule matching this node.
OPTIONAL -
cssFunctionRules
CSS.CSSFunctionRule[] cssFunctionRules
A list of CSS at-function rules referenced by styles of this node.
OPTIONALEXPERIMENTAL -
cssKeyframesRules
CSS.CSSKeyframesRule[] cssKeyframesRules
A list of CSS keyframed animations matching this node.
OPTIONAL -
cssPositionTryRules
CSS.CSSPositionTryRule[] cssPositionTryRules
A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
OPTIONAL -
cssPropertyRegistrations
CSS.CSSPropertyRegistration[] cssPropertyRegistrations
A list of CSS property registrations matching this node.
OPTIONAL -
cssPropertyRules
CSS.CSSPropertyRule[] cssPropertyRules
A list of CSS at-property rules matching this node.
OPTIONAL -
inherited
CSS.InheritedStyleEntry[] inherited
A chain of inherited styles (from the immediate node parent up to the DOM tree root).
OPTIONAL -
inheritedPseudoElements
CSS.InheritedPseudoElementMatches[] inheritedPseudoElements
A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).
OPTIONAL -
inlineStyle
CSS.CSSStyle inlineStyle
Inline style for the specified DOM node.
OPTIONAL -
matchedCSSRules
CSS.RuleMatch[] matchedCSSRules
CSS rules matching this node, from all applicable stylesheets.
OPTIONAL -
parentLayoutNodeId
java.lang.Integer parentLayoutNodeId
Id of the first parent element that does not have display: contents.
OPTIONALEXPERIMENTAL -
pseudoElements
CSS.PseudoElementMatches[] pseudoElements
Pseudo style matches for this node.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.InheritedAnimatedStyleEntry extends BaseType<CSS.InheritedAnimatedStyleEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
animationStyles
CSS.CSSAnimationStyle[] animationStyles
Styles coming from the animations of the ancestor, if any, in the style inheritance chain.
OPTIONAL -
transitionsStyle
CSS.CSSStyle transitionsStyle
The style coming from the transitions of the ancestor, if any, in the style inheritance chain.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.InheritedPseudoElementMatches extends BaseType<CSS.InheritedPseudoElementMatches> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
pseudoElements
CSS.PseudoElementMatches[] pseudoElements
Matches of pseudo styles from the pseudos of an ancestor node.
-
-
Class Torello.Browser.BrowserAPI.CSS.InheritedStyleEntry extends BaseType<CSS.InheritedStyleEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
inlineStyle
CSS.CSSStyle inlineStyle
The ancestor node's inline style, if any, in the style inheritance chain.
OPTIONAL -
matchedCSSRules
CSS.RuleMatch[] matchedCSSRules
Matches of CSS rules matching the ancestor node in the style inheritance chain.
-
-
Class Torello.Browser.BrowserAPI.CSS.MediaQuery extends BaseType<CSS.MediaQuery> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
active
boolean active
Whether the media query condition is satisfied. -
expressions
CSS.MediaQueryExpression[] expressions
Array of media query expressions.
-
-
Class Torello.Browser.BrowserAPI.CSS.MediaQueryExpression extends BaseType<CSS.MediaQueryExpression> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
computedLength
java.lang.Number computedLength
Computed length of media query expression (if applicable).
OPTIONAL -
feature
java.lang.String feature
Media query expression feature. -
unit
java.lang.String unit
Media query expression units. -
value
java.lang.Number value
Media query expression value. -
valueRange
CSS.SourceRange valueRange
The associated range of the value text in the enclosing stylesheet (if available).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.CSS.PlatformFontUsage extends BaseType<CSS.PlatformFontUsage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
familyName
java.lang.String familyName
Font's family name reported by platform. -
glyphCount
java.lang.Number glyphCount
Amount of glyphs that were rendered with this font. -
isCustomFont
boolean isCustomFont
Indicates if the font was downloaded or resolved locally. -
postScriptName
java.lang.String postScriptName
Font's PostScript name reported by platform.
-
-
Class Torello.Browser.BrowserAPI.CSS.PseudoElementMatches extends BaseType<CSS.PseudoElementMatches> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
matches
CSS.RuleMatch[] matches
Matches of CSS rules applicable to the pseudo style. -
pseudoIdentifier
java.lang.String pseudoIdentifier
Pseudo element custom ident.
OPTIONAL -
pseudoType
java.lang.String pseudoType
Pseudo element type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.CSS.RuleMatch extends BaseType<CSS.RuleMatch> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
matchingSelectors
int[] matchingSelectors
Matching selector indices in the rule's selectorList selectors (0-based). -
rule
CSS.CSSRule rule
CSS rule in the match.
-
-
Class Torello.Browser.BrowserAPI.CSS.RuleUsage extends BaseType<CSS.RuleUsage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
endOffset
java.lang.Number endOffset
Offset of the end of the rule body from the beginning of the stylesheet. -
startOffset
java.lang.Number startOffset
Offset of the start of the rule (including selector) from the beginning of the stylesheet. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from. -
used
boolean used
Indicates whether the rule was actually used by some element in the page.
-
-
Class Torello.Browser.BrowserAPI.CSS.SelectorList extends BaseType<CSS.SelectorList> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
selectors
CSS.Value[] selectors
Selectors in the list. -
text
java.lang.String text
Rule selector text.
-
-
Class Torello.Browser.BrowserAPI.CSS.ShorthandEntry extends BaseType<CSS.ShorthandEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
important
java.lang.Boolean important
Whether the property has "!important" annotation (impliesfalseif absent).
OPTIONAL -
name
java.lang.String name
Shorthand name. -
value
java.lang.String value
Shorthand value.
-
-
Class Torello.Browser.BrowserAPI.CSS.SourceRange extends BaseType<CSS.SourceRange> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
endColumn
int endColumn
End column of range (exclusive). -
endLine
int endLine
End line of range -
startColumn
int startColumn
Start column of range (inclusive). -
startLine
int startLine
Start line of range.
-
-
Class Torello.Browser.BrowserAPI.CSS.Specificity extends BaseType<CSS.Specificity> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a
int a
The a component, which represents the number of ID selectors. -
b
int b
The b component, which represents the number of class selectors, attributes selectors, and pseudo-classes. -
c
int c
The c component, which represents the number of type selectors and pseudo-elements.
-
-
Class Torello.Browser.BrowserAPI.CSS.StyleDeclarationEdit extends BaseType<CSS.StyleDeclarationEdit> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
range
CSS.SourceRange range
The range of the style text in the enclosing stylesheet. -
styleSheetId
java.lang.String styleSheetId
The css style sheet identifier. -
text
java.lang.String text
New style text.
-
-
Class Torello.Browser.BrowserAPI.CSS.styleSheetAdded extends BrowserEvent<CSS.styleSheetAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
header
CSS.CSSStyleSheetHeader header
Added stylesheet metainfo.
-
-
Class Torello.Browser.BrowserAPI.CSS.styleSheetChanged extends BrowserEvent<CSS.styleSheetChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
styleSheetId
java.lang.String styleSheetId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.CSS.styleSheetRemoved extends BrowserEvent<CSS.styleSheetRemoved> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
styleSheetId
java.lang.String styleSheetId
Identifier of the removed stylesheet.
-
-
Class Torello.Browser.BrowserAPI.CSS.takeCoverageDelta$$RET extends BaseType<CSS.takeCoverageDelta$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
coverage
CSS.RuleUsage[] coverage
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
Monotonically increasing time, in seconds.
-
-
Class Torello.Browser.BrowserAPI.CSS.Value extends BaseType<CSS.Value> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
range
CSS.SourceRange range
Value range in the underlying resource (if available).
OPTIONAL -
specificity
CSS.Specificity specificity
Specificity of the selector.
OPTIONALEXPERIMENTAL -
text
java.lang.String text
Value text.
-
-
Class Torello.Browser.BrowserAPI.DeviceAccess.deviceRequestPrompted extends BrowserEvent<DeviceAccess.deviceRequestPrompted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
devices
DeviceAccess.PromptDevice[] devices
[No Description Provided by Google] -
id
java.lang.String id
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DeviceAccess.PromptDevice extends BaseType<DeviceAccess.PromptDevice> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
[No Description Provided by Google] -
name
java.lang.String name
Display name as it appears in a device request user prompt.
-
-
Class Torello.Browser.BrowserAPI.DOM.attributeModified extends BrowserEvent<DOM.attributeModified> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Attribute name. -
nodeId
int nodeId
Id of the node that has changed. -
value
java.lang.String value
Attribute value.
-
-
Class Torello.Browser.BrowserAPI.DOM.attributeRemoved extends BrowserEvent<DOM.attributeRemoved> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
A ttribute name. -
nodeId
int nodeId
Id of the node that has changed.
-
-
Class Torello.Browser.BrowserAPI.DOM.BackendNode extends BaseType<DOM.BackendNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
int backendNodeId
[No Description Provided by Google] -
nodeName
java.lang.String nodeName
Node's nodeName. -
nodeType
int nodeType
Node's nodeType.
-
-
Class Torello.Browser.BrowserAPI.DOM.BoxModel extends BaseType<DOM.BoxModel> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
border
java.lang.Number border
Border box -
content
java.lang.Number content
Content box -
height
int height
Node height -
margin
java.lang.Number margin
Margin box -
padding
java.lang.Number padding
Padding box -
shapeOutside
DOM.ShapeOutsideInfo shapeOutside
Shape outside coordinates
OPTIONAL -
width
int width
Node width
-
-
Class Torello.Browser.BrowserAPI.DOM.characterDataModified extends BrowserEvent<DOM.characterDataModified> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
characterData
java.lang.String characterData
New text value. -
nodeId
int nodeId
Id of the node that has changed.
-
-
Class Torello.Browser.BrowserAPI.DOM.childNodeCountUpdated extends BrowserEvent<DOM.childNodeCountUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
childNodeCount
int childNodeCount
New node count. -
nodeId
int nodeId
Id of the node that has changed.
-
-
Class Torello.Browser.BrowserAPI.DOM.childNodeInserted extends BrowserEvent<DOM.childNodeInserted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
node
DOM.Node node
Inserted node data. -
parentNodeId
int parentNodeId
Id of the node that has changed. -
previousNodeId
int previousNodeId
Id of the previous sibling.
-
-
Class Torello.Browser.BrowserAPI.DOM.childNodeRemoved extends BrowserEvent<DOM.childNodeRemoved> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeId
int nodeId
Id of the node that has been removed. -
parentNodeId
int parentNodeId
Parent id.
-
-
Class Torello.Browser.BrowserAPI.DOM.CSSComputedStyleProperty extends BaseType<DOM.CSSComputedStyleProperty> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Computed style property name. -
value
java.lang.String value
Computed style property value.
-
-
Class Torello.Browser.BrowserAPI.DOM.DetachedElementInfo extends BaseType<DOM.DetachedElementInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
retainedNodeIds
int[] retainedNodeIds
[No Description Provided by Google] -
treeNode
DOM.Node treeNode
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOM.distributedNodesUpdated extends BrowserEvent<DOM.distributedNodesUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
distributedNodes
DOM.BackendNode[] distributedNodes
Distributed nodes for given insertion point. -
insertionPointId
int insertionPointId
Insertion point where distributed nodes were updated.
-
-
Class Torello.Browser.BrowserAPI.DOM.getFrameOwner$$RET extends BaseType<DOM.getFrameOwner$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
int backendNodeId
Resulting node. -
nodeId
java.lang.Integer nodeId
Id of the node at given coordinates, only when enabled and requested document.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.DOM.getNodeForLocation$$RET extends BaseType<DOM.getNodeForLocation$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
int backendNodeId
Resulting node. -
frameId
java.lang.String frameId
Frame this node belongs to. -
nodeId
java.lang.Integer nodeId
Id of the node at given coordinates, only when enabled and requested document.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.DOM.inlineStyleInvalidated extends BrowserEvent<DOM.inlineStyleInvalidated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeIds
int[] nodeIds
Ids of the nodes for which the inline styles have been invalidated.
-
-
Class Torello.Browser.BrowserAPI.DOM.Node extends BaseType<DOM.Node> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
assignedSlot
DOM.BackendNode assignedSlot
[No Description Provided by Google]
OPTIONAL -
attributes
java.lang.String[] attributes
Attributes of theElementnode in the form of flat array[name1, value1, name2, value2].
OPTIONAL -
backendNodeId
int backendNodeId
The BackendNodeId for this node. -
baseURL
java.lang.String baseURL
Base URL thatDocumentorFrameOwnernode uses for URL completion.
OPTIONAL -
childNodeCount
java.lang.Integer childNodeCount
Child count forContainernodes.
OPTIONAL -
children
DOM.Node[] children
Child nodes of this node when requested with children.
OPTIONAL -
compatibilityMode
java.lang.String compatibilityMode
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
contentDocument
DOM.Node contentDocument
Content document for frame owner elements.
OPTIONAL -
distributedNodes
DOM.BackendNode[] distributedNodes
Distributed nodes for given insertion point.
OPTIONAL -
documentURL
java.lang.String documentURL
Document URL thatDocumentorFrameOwnernode points to.
OPTIONAL -
frameId
java.lang.String frameId
Frame ID for frame owner elements.
OPTIONAL -
importedDocument
DOM.Node importedDocument
Deprecated, as the HTML Imports API has been removed (crbug.com/937746). This property used to return the imported document for the HTMLImport links. The property is always undefined now.
OPTIONALDEPRECATED -
internalSubset
java.lang.String internalSubset
DocumentType's internalSubset.
OPTIONAL -
isScrollable
java.lang.Boolean isScrollable
[No Description Provided by Google]
OPTIONALEXPERIMENTAL -
isSVG
java.lang.Boolean isSVG
Whether the node is SVG.
OPTIONAL -
localName
java.lang.String localName
Node's localName. -
name
java.lang.String name
Attr's name.
OPTIONAL -
nodeId
int nodeId
Node identifier that is passed into the rest of the DOM messages as thenodeId. Backend will only push node with givenidonce. It is aware of all requested nodes and will only fire DOM events for nodes known to the client. -
nodeName
java.lang.String nodeName
Node's nodeName. -
nodeType
int nodeType
Node's nodeType. -
nodeValue
java.lang.String nodeValue
Node's nodeValue. -
parentId
java.lang.Integer parentId
The id of the parent node if any.
OPTIONAL -
pseudoElements
DOM.Node[] pseudoElements
Pseudo elements associated with this node.
OPTIONAL -
pseudoIdentifier
java.lang.String pseudoIdentifier
Pseudo element identifier for this node. Only present if there is a valid pseudoType.
OPTIONAL -
pseudoType
java.lang.String pseudoType
Pseudo element type for this node.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
publicId
java.lang.String publicId
DocumentType's publicId.
OPTIONAL -
shadowRoots
DOM.Node[] shadowRoots
Shadow root list for given element host.
OPTIONAL -
shadowRootType
java.lang.String shadowRootType
Shadow root type.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
systemId
java.lang.String systemId
DocumentType's systemId.
OPTIONAL -
templateContent
DOM.Node templateContent
Content document fragment for template elements.
OPTIONAL -
value
java.lang.String value
Attr's value.
OPTIONAL -
xmlVersion
java.lang.String xmlVersion
Document's XML version in case of XML documents.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.DOM.performSearch$$RET extends BaseType<DOM.performSearch$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
resultCount
int resultCount
Number of search results. -
searchId
java.lang.String searchId
Unique search session identifier.
-
-
Class Torello.Browser.BrowserAPI.DOM.pseudoElementAdded extends BrowserEvent<DOM.pseudoElementAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
parentId
int parentId
Pseudo element's parent element id. -
pseudoElement
DOM.Node pseudoElement
The added pseudo element.
-
-
Class Torello.Browser.BrowserAPI.DOM.pseudoElementRemoved extends BrowserEvent<DOM.pseudoElementRemoved> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
parentId
int parentId
Pseudo element's parent element id. -
pseudoElementId
int pseudoElementId
The removed pseudo element id.
-
-
Class Torello.Browser.BrowserAPI.DOM.Rect extends BaseType<DOM.Rect> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
height
java.lang.Number height
Rectangle height -
width
java.lang.Number width
Rectangle width -
x
java.lang.Number x
X coordinate -
y
java.lang.Number y
Y coordinate
-
-
Class Torello.Browser.BrowserAPI.DOM.RGBA extends BaseType<DOM.RGBA> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a
java.lang.Number a
The alpha component, in the [0-1] range (default: 1).
OPTIONAL -
b
int b
The blue component, in the [0-255] range. -
g
int g
The green component, in the [0-255] range. -
r
int r
The red component, in the [0-255] range.
-
-
Class Torello.Browser.BrowserAPI.DOM.scrollableFlagUpdated extends BrowserEvent<DOM.scrollableFlagUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isScrollable
boolean isScrollable
If the node is scrollable. -
nodeId
int nodeId
The id of the node.
-
-
Class Torello.Browser.BrowserAPI.DOM.setChildNodes extends BrowserEvent<DOM.setChildNodes> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodes
DOM.Node[] nodes
Child nodes array. -
parentId
int parentId
Parent node id to populate with children.
-
-
Class Torello.Browser.BrowserAPI.DOM.shadowRootPopped extends BrowserEvent<DOM.shadowRootPopped> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hostId
int hostId
Host element id. -
rootId
int rootId
Shadow root id.
-
-
Class Torello.Browser.BrowserAPI.DOM.shadowRootPushed extends BrowserEvent<DOM.shadowRootPushed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hostId
int hostId
Host element id. -
root
DOM.Node root
Shadow root.
-
-
Class Torello.Browser.BrowserAPI.DOM.ShapeOutsideInfo extends BaseType<DOM.ShapeOutsideInfo> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.BrowserAPI.DOMDebugger.EventListener extends BaseType<DOMDebugger.EventListener> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
java.lang.Integer backendNodeId
Node the listener is added to (if any).
OPTIONAL -
columnNumber
int columnNumber
Column number in the script (0-based). -
handler
RunTime.RemoteObject handler
Event handler function value.
OPTIONAL -
lineNumber
int lineNumber
Line number in the script (0-based). -
once
boolean once
EventListener's once flag. -
originalHandler
RunTime.RemoteObject originalHandler
Event original handler function value.
OPTIONAL -
passive
boolean passive
EventListener's passive flag. -
scriptId
java.lang.String scriptId
Script id of the handler code. -
type
java.lang.String type
EventListener's type. -
useCapture
boolean useCapture
EventListener's useCapture.
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.captureSnapshot$$RET extends BaseType<DOMSnapshot.captureSnapshot$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
documents
DOMSnapshot.DocumentSnapshot[] documents
The nodes in the DOM tree. The DOMNode at index 0 corresponds to the root document. -
strings
java.lang.String[] strings
Shared string table that all string properties refer to with indexes.
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.ComputedStyle extends BaseType<DOMSnapshot.ComputedStyle> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
properties
DOMSnapshot.NameValue[] properties
Name/value pairs of computed style properties.
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.DocumentSnapshot extends BaseType<DOMSnapshot.DocumentSnapshot> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
baseURL
int baseURL
Base URL thatDocumentorFrameOwnernode uses for URL completion. -
contentHeight
java.lang.Number contentHeight
Document content height.
OPTIONAL -
contentLanguage
int contentLanguage
Contains the document's content language. -
contentWidth
java.lang.Number contentWidth
Document content width.
OPTIONAL -
documentURL
int documentURL
Document URL thatDocumentorFrameOwnernode points to. -
encodingName
int encodingName
Contains the document's character set encoding. -
frameId
int frameId
Frame ID for frame owner elements and also for the document node. -
layout
DOMSnapshot.LayoutTreeSnapshot layout
The nodes in the layout tree. -
nodes
DOMSnapshot.NodeTreeSnapshot nodes
A table with dom nodes. -
publicId
int publicId
DocumentTypenode's publicId. -
scrollOffsetX
java.lang.Number scrollOffsetX
Horizontal scroll offset.
OPTIONAL -
scrollOffsetY
java.lang.Number scrollOffsetY
Vertical scroll offset.
OPTIONAL -
systemId
int systemId
DocumentTypenode's systemId. -
textBoxes
DOMSnapshot.TextBoxSnapshot textBoxes
The post-layout inline text nodes. -
title
int title
Document title.
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.DOMNode extends BaseType<DOMSnapshot.DOMNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
attributes
DOMSnapshot.NameValue[] attributes
Attributes of anElementnode.
OPTIONAL -
backendNodeId
int backendNodeId
Node's id, corresponds to DOM.Node.backendNodeId. -
baseURL
java.lang.String baseURL
Base URL thatDocumentorFrameOwnernode uses for URL completion.
OPTIONAL -
childNodeIndexes
int[] childNodeIndexes
The indexes of the node's child nodes in thedomNodesarray returned bygetSnapshot, if any.
OPTIONAL -
contentDocumentIndex
java.lang.Integer contentDocumentIndex
The index of a frame owner element's content document in thedomNodesarray returned bygetSnapshot, if any.
OPTIONAL -
contentLanguage
java.lang.String contentLanguage
Only set for documents, contains the document's content language.
OPTIONAL -
currentSourceURL
java.lang.String currentSourceURL
The selected url for nodes with a srcset attribute.
OPTIONAL -
documentEncoding
java.lang.String documentEncoding
Only set for documents, contains the document's character set encoding.
OPTIONAL -
documentURL
java.lang.String documentURL
Document URL thatDocumentorFrameOwnernode points to.
OPTIONAL -
eventListeners
DOMDebugger.EventListener[] eventListeners
Details of the node's event listeners, if any.
OPTIONAL -
frameId
java.lang.String frameId
Frame ID for frame owner elements and also for the document node.
OPTIONAL -
inputChecked
java.lang.Boolean inputChecked
Only set for radio and checkbox input elements, indicates if the element has been checked
OPTIONAL -
inputValue
java.lang.String inputValue
Only set for input elements, contains the input's associated text value.
OPTIONAL -
isClickable
java.lang.Boolean isClickable
Whether this DOM node responds to mouse clicks. This includes nodes that have had click event listeners attached via JavaScript as well as anchor tags that naturally navigate when clicked.
OPTIONAL -
layoutNodeIndex
java.lang.Integer layoutNodeIndex
The index of the node's related layout tree node in thelayoutTreeNodesarray returned bygetSnapshot, if any.
OPTIONAL -
nodeName
java.lang.String nodeName
Node's nodeName. -
nodeType
int nodeType
Node's nodeType. -
nodeValue
java.lang.String nodeValue
Node's nodeValue. -
optionSelected
java.lang.Boolean optionSelected
Only set for option elements, indicates if the element has been selected
OPTIONAL -
originURL
java.lang.String originURL
The url of the script (if any) that generates this node.
OPTIONAL -
pseudoElementIndexes
int[] pseudoElementIndexes
Indexes of pseudo elements associated with this node in thedomNodesarray returned bygetSnapshot, if any.
OPTIONAL -
pseudoType
java.lang.String pseudoType
Type of a pseudo element node.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
publicId
java.lang.String publicId
DocumentTypenode's publicId.
OPTIONAL -
scrollOffsetX
java.lang.Number scrollOffsetX
Scroll offsets, set when this node is a Document.
OPTIONAL -
scrollOffsetY
java.lang.Number scrollOffsetY
[No Description Provided by Google]
OPTIONAL -
shadowRootType
java.lang.String shadowRootType
Shadow root type.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
systemId
java.lang.String systemId
DocumentTypenode's systemId.
OPTIONAL -
textValue
java.lang.String textValue
Only set for textarea elements, contains the text value.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.getSnapshot$$RET extends BaseType<DOMSnapshot.getSnapshot$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
computedStyles
DOMSnapshot.ComputedStyle[] computedStyles
Whitelisted ComputedStyle properties for each node in the layout tree. -
domNodes
DOMSnapshot.DOMNode[] domNodes
The nodes in the DOM tree. The DOMNode at index 0 corresponds to the root document. -
layoutTreeNodes
DOMSnapshot.LayoutTreeNode[] layoutTreeNodes
The nodes in the layout tree.
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.InlineTextBox extends BaseType<DOMSnapshot.InlineTextBox> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
boundingBox
DOM.Rect boundingBox
The bounding box in document coordinates. Note that scroll offset of the document is ignored. -
numCharacters
int numCharacters
The number of characters in this post layout textbox substring. Characters that would be represented as a surrogate pair in UTF-16 have length 2. -
startCharacterIndex
int startCharacterIndex
The starting index in characters, for this post layout textbox substring. Characters that would be represented as a surrogate pair in UTF-16 have length 2.
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.LayoutTreeNode extends BaseType<DOMSnapshot.LayoutTreeNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
boundingBox
DOM.Rect boundingBox
The bounding box in document coordinates. Note that scroll offset of the document is ignored. -
domNodeIndex
int domNodeIndex
The index of the related DOM node in thedomNodesarray returned bygetSnapshot. -
inlineTextNodes
DOMSnapshot.InlineTextBox[] inlineTextNodes
The post-layout inline text nodes, if any.
OPTIONAL -
isStackingContext
java.lang.Boolean isStackingContext
Set to true to indicate the element begins a new stacking context.
OPTIONAL -
layoutText
java.lang.String layoutText
Contents of the LayoutText, if any.
OPTIONAL -
paintOrder
java.lang.Integer paintOrder
Global paint order index, which is determined by the stacking order of the nodes. Nodes that are painted together will have the same index. Only provided if includePaintOrder in getSnapshot was true.
OPTIONAL -
styleIndex
java.lang.Integer styleIndex
Index into thecomputedStylesarray returned bygetSnapshot.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.LayoutTreeSnapshot extends BaseType<DOMSnapshot.LayoutTreeSnapshot> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blendedBackgroundColors
int[] blendedBackgroundColors
The list of background colors that are blended with colors of overlapping elements.
OPTIONALEXPERIMENTAL -
bounds
java.lang.Number[] bounds
The absolute position bounding box. -
clientRects
java.lang.Number[] clientRects
The client rect of nodes. Only available when includeDOMRects is set to true
OPTIONAL -
nodeIndex
int[] nodeIndex
Index of the corresponding node in theNodeTreeSnapshotarray returned bycaptureSnapshot. -
offsetRects
java.lang.Number[] offsetRects
The offset rect of nodes. Only available when includeDOMRects is set to true
OPTIONAL -
paintOrders
int[] paintOrders
Global paint order index, which is determined by the stacking order of the nodes. Nodes that are painted together will have the same index. Only provided if includePaintOrder in captureSnapshot was true.
OPTIONAL -
scrollRects
java.lang.Number[] scrollRects
The scroll rect of nodes. Only available when includeDOMRects is set to true
OPTIONAL -
stackingContexts
DOMSnapshot.RareBooleanData stackingContexts
Stacking context information. -
styles
int[][] styles
Array of indexes specifying computed style strings, filtered according to thecomputedStylesparameter passed tocaptureSnapshot. -
text
int[] text
Contents of the LayoutText, if any. -
textColorOpacities
java.lang.Number[] textColorOpacities
The list of computed text opacities.
OPTIONALEXPERIMENTAL
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.NameValue extends BaseType<DOMSnapshot.NameValue> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Attribute/property name. -
value
java.lang.String value
Attribute/property value.
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.NodeTreeSnapshot extends BaseType<DOMSnapshot.NodeTreeSnapshot> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
attributes
int[][] attributes
Attributes of anElementnode. Flatten name, value pairs.
OPTIONAL -
backendNodeId
int[] backendNodeId
Node's id, corresponds to DOM.Node.backendNodeId.
OPTIONAL -
contentDocumentIndex
DOMSnapshot.RareIntegerData contentDocumentIndex
The index of the document in the list of the snapshot documents.
OPTIONAL -
currentSourceURL
DOMSnapshot.RareStringData currentSourceURL
The selected url for nodes with a srcset attribute.
OPTIONAL -
inputChecked
DOMSnapshot.RareBooleanData inputChecked
Only set for radio and checkbox input elements, indicates if the element has been checked
OPTIONAL -
inputValue
DOMSnapshot.RareStringData inputValue
Only set for input elements, contains the input's associated text value.
OPTIONAL -
isClickable
DOMSnapshot.RareBooleanData isClickable
Whether this DOM node responds to mouse clicks. This includes nodes that have had click event listeners attached via JavaScript as well as anchor tags that naturally navigate when clicked.
OPTIONAL -
nodeName
int[] nodeName
Node's nodeName.
OPTIONAL -
nodeType
int[] nodeType
Node's nodeType.
OPTIONAL -
nodeValue
int[] nodeValue
Node's nodeValue.
OPTIONAL -
optionSelected
DOMSnapshot.RareBooleanData optionSelected
Only set for option elements, indicates if the element has been selected
OPTIONAL -
originURL
DOMSnapshot.RareStringData originURL
The url of the script (if any) that generates this node.
OPTIONAL -
parentIndex
int[] parentIndex
Parent node index.
OPTIONAL -
pseudoIdentifier
DOMSnapshot.RareStringData pseudoIdentifier
Pseudo element identifier for this node. Only present if there is a valid pseudoType.
OPTIONAL -
pseudoType
DOMSnapshot.RareStringData pseudoType
Type of a pseudo element node.
OPTIONAL -
shadowRootType
DOMSnapshot.RareStringData shadowRootType
Type of the shadow root theNodeis in. String values are equal to theShadowRootTypeenum.
OPTIONAL -
textValue
DOMSnapshot.RareStringData textValue
Only set for textarea elements, contains the text value.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.RareBooleanData extends BaseType<DOMSnapshot.RareBooleanData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
index
int[] index
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.RareIntegerData extends BaseType<DOMSnapshot.RareIntegerData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
index
int[] index
[No Description Provided by Google] -
value
int[] value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.RareStringData extends BaseType<DOMSnapshot.RareStringData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
index
int[] index
[No Description Provided by Google] -
value
int[] value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOMSnapshot.TextBoxSnapshot extends BaseType<DOMSnapshot.TextBoxSnapshot> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bounds
java.lang.Number[] bounds
The absolute position bounding box. -
layoutIndex
int[] layoutIndex
Index of the layout tree node that owns this box collection. -
length
int[] length
The number of characters in this post layout textbox substring. Characters that would be represented as a surrogate pair in UTF-16 have length 2. -
start
int[] start
The starting index in characters, for this post layout textbox substring. Characters that would be represented as a surrogate pair in UTF-16 have length 2.
-
-
Class Torello.Browser.BrowserAPI.DOMStorage.domStorageItemAdded extends BrowserEvent<DOMStorage.domStorageItemAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
java.lang.String key
[No Description Provided by Google] -
newValue
java.lang.String newValue
[No Description Provided by Google] -
storageId
DOMStorage.StorageId storageId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOMStorage.domStorageItemRemoved extends BrowserEvent<DOMStorage.domStorageItemRemoved> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
java.lang.String key
[No Description Provided by Google] -
storageId
DOMStorage.StorageId storageId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOMStorage.domStorageItemsCleared extends BrowserEvent<DOMStorage.domStorageItemsCleared> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
storageId
DOMStorage.StorageId storageId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOMStorage.domStorageItemUpdated extends BrowserEvent<DOMStorage.domStorageItemUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
java.lang.String key
[No Description Provided by Google] -
newValue
java.lang.String newValue
[No Description Provided by Google] -
oldValue
java.lang.String oldValue
[No Description Provided by Google] -
storageId
DOMStorage.StorageId storageId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.DOMStorage.StorageId extends BaseType<DOMStorage.StorageId> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isLocalStorage
boolean isLocalStorage
Whether the storage is local storage (not session storage). -
securityOrigin
java.lang.String securityOrigin
Security origin for the storage.
OPTIONAL -
storageKey
java.lang.String storageKey
Represents a key by which DOM Storage keys its CachedStorageAreas
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Emulation.DevicePosture extends BaseType<Emulation.DevicePosture> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
type
java.lang.String type
Current posture of the device- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Emulation.DisplayFeature extends BaseType<Emulation.DisplayFeature> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
maskLength
int maskLength
A display feature may mask content such that it is not physically displayed - this length along with the offset describes this area. A display feature that only splits content will have a 0 mask_length. -
offset
int offset
The offset from the screen origin in either the x (for vertical orientation) or y (for horizontal orientation) direction. -
orientation
java.lang.String orientation
Orientation of a display feature in relation to screen- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Emulation.MediaFeature extends BaseType<Emulation.MediaFeature> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Emulation.PressureMetadata extends BaseType<Emulation.PressureMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
available
java.lang.Boolean available
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Emulation.SafeAreaInsets extends BaseType<Emulation.SafeAreaInsets> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bottom
java.lang.Integer bottom
Overrides safe-area-inset-bottom.
OPTIONAL -
bottomMax
java.lang.Integer bottomMax
Overrides safe-area-max-inset-bottom.
OPTIONAL -
left
java.lang.Integer left
Overrides safe-area-inset-left.
OPTIONAL -
leftMax
java.lang.Integer leftMax
Overrides safe-area-max-inset-left.
OPTIONAL -
right
java.lang.Integer right
Overrides safe-area-inset-right.
OPTIONAL -
rightMax
java.lang.Integer rightMax
Overrides safe-area-max-inset-right.
OPTIONAL -
top
java.lang.Integer top
Overrides safe-area-inset-top.
OPTIONAL -
topMax
java.lang.Integer topMax
Overrides safe-area-max-inset-top.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Emulation.ScreenOrientation extends BaseType<Emulation.ScreenOrientation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
angle
int angle
Orientation angle. -
type
java.lang.String type
Orientation type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Emulation.SensorMetadata extends BaseType<Emulation.SensorMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
available
java.lang.Boolean available
[No Description Provided by Google]
OPTIONAL -
maximumFrequency
java.lang.Number maximumFrequency
[No Description Provided by Google]
OPTIONAL -
minimumFrequency
java.lang.Number minimumFrequency
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Emulation.SensorReading extends BaseType<Emulation.SensorReading> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
quaternion
Emulation.SensorReadingQuaternion quaternion
[No Description Provided by Google]
OPTIONAL -
single
Emulation.SensorReadingSingle single
[No Description Provided by Google]
OPTIONAL -
xyz
Emulation.SensorReadingXYZ xyz
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Emulation.SensorReadingQuaternion extends BaseType<Emulation.SensorReadingQuaternion> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
w
java.lang.Number w
[No Description Provided by Google] -
x
java.lang.Number x
[No Description Provided by Google] -
y
java.lang.Number y
[No Description Provided by Google] -
z
java.lang.Number z
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Emulation.SensorReadingSingle extends BaseType<Emulation.SensorReadingSingle> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
value
java.lang.Number value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Emulation.SensorReadingXYZ extends BaseType<Emulation.SensorReadingXYZ> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
x
java.lang.Number x
[No Description Provided by Google] -
y
java.lang.Number y
[No Description Provided by Google] -
z
java.lang.Number z
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Emulation.UserAgentBrandVersion extends BaseType<Emulation.UserAgentBrandVersion> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
brand
java.lang.String brand
[No Description Provided by Google] -
version
java.lang.String version
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Emulation.UserAgentMetadata extends BaseType<Emulation.UserAgentMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
architecture
java.lang.String architecture
[No Description Provided by Google] -
bitness
java.lang.String bitness
[No Description Provided by Google]
OPTIONAL -
brands
Emulation.UserAgentBrandVersion[] brands
Brands appearing in Sec-CH-UA.
OPTIONAL -
formFactors
java.lang.String[] formFactors
Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
OPTIONAL -
fullVersion
java.lang.String fullVersion
[No Description Provided by Google]
OPTIONALDEPRECATED -
fullVersionList
Emulation.UserAgentBrandVersion[] fullVersionList
Brands appearing in Sec-CH-UA-Full-Version-List.
OPTIONAL -
mobile
boolean mobile
[No Description Provided by Google] -
model
java.lang.String model
[No Description Provided by Google] -
platform
java.lang.String platform
[No Description Provided by Google] -
platformVersion
java.lang.String platformVersion
[No Description Provided by Google] -
wow64
java.lang.Boolean wow64
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.FedCm.Account extends BaseType<FedCm.Account> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
accountId
java.lang.String accountId
[No Description Provided by Google] -
email
java.lang.String email
[No Description Provided by Google] -
givenName
java.lang.String givenName
[No Description Provided by Google] -
idpConfigUrl
java.lang.String idpConfigUrl
[No Description Provided by Google] -
idpLoginUrl
java.lang.String idpLoginUrl
[No Description Provided by Google] -
loginState
java.lang.String loginState
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
name
java.lang.String name
[No Description Provided by Google] -
pictureUrl
java.lang.String pictureUrl
[No Description Provided by Google] -
privacyPolicyUrl
java.lang.String privacyPolicyUrl
[No Description Provided by Google]
OPTIONAL -
termsOfServiceUrl
java.lang.String termsOfServiceUrl
These two are only set if the loginState is signUp
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.FedCm.dialogClosed extends BrowserEvent<FedCm.dialogClosed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dialogId
java.lang.String dialogId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.FedCm.dialogShown extends BrowserEvent<FedCm.dialogShown> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
accounts
FedCm.Account[] accounts
[No Description Provided by Google] -
dialogId
java.lang.String dialogId
[No Description Provided by Google] -
dialogType
java.lang.String dialogType
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
subtitle
java.lang.String subtitle
[No Description Provided by Google]
OPTIONAL -
title
java.lang.String title
These exist primarily so that the caller can verify the RP context was used appropriately.
-
-
Class Torello.Browser.BrowserAPI.Fetch.AuthChallenge extends BaseType<Fetch.AuthChallenge> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
origin
java.lang.String origin
Origin of the challenger. -
realm
java.lang.String realm
The realm of the challenge. May be empty. -
scheme
java.lang.String scheme
The authentication scheme used, such as basic or digest -
source
java.lang.String source
Source of the authentication challenge.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Fetch.AuthChallengeResponse extends BaseType<Fetch.AuthChallengeResponse> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
password
java.lang.String password
The password to provide, possibly empty. Should only be set if response is ProvideCredentials.
OPTIONAL -
response
java.lang.String response
The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.- See Also:
BaseType.enumStrList(String)
-
username
java.lang.String username
The username to provide, possibly empty. Should only be set if response is ProvideCredentials.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Fetch.authRequired extends BrowserEvent<Fetch.authRequired> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
authChallenge
Fetch.AuthChallenge authChallenge
Details of the Authorization Challenge encountered. If this is set, client should respond with continueRequest that contains AuthChallengeResponse. -
frameId
java.lang.String frameId
The id of the frame that initiated the request. -
request
Network.Request request
The details of the request. -
requestId
java.lang.String requestId
Each request the page makes will have a unique id. -
resourceType
java.lang.String resourceType
How the requested resource will be used.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Fetch.getResponseBody$$RET extends BaseType<Fetch.getResponseBody$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
base64Encoded
boolean base64Encoded
True, if content was sent as base64. -
body
java.lang.String body
Response body.
-
-
Class Torello.Browser.BrowserAPI.Fetch.HeaderEntry extends BaseType<Fetch.HeaderEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Fetch.RequestPattern extends BaseType<Fetch.RequestPattern> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestStage
java.lang.String requestStage
Stage at which to begin intercepting requests. Default is Request.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
resourceType
java.lang.String resourceType
If set, only requests for matching resource types will be intercepted.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
urlPattern
java.lang.String urlPattern
Wildcards ('*'-> zero or more,'?'-> exactly one) are allowed. Escape character is backslash. Omitting is equivalent to"*".
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Fetch.requestPaused extends BrowserEvent<Fetch.requestPaused> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
The id of the frame that initiated the request. -
networkId
java.lang.String networkId
If the intercepted request had a corresponding Network.requestWillBeSent event fired for it, then this networkId will be the same as the requestId present in the requestWillBeSent event.
OPTIONAL -
redirectedRequestId
java.lang.String redirectedRequestId
If the request is due to a redirect response from the server, the id of the request that has caused the redirect.
OPTIONALEXPERIMENTAL -
request
Network.Request request
The details of the request. -
requestId
java.lang.String requestId
Each request the page makes will have a unique id. -
resourceType
java.lang.String resourceType
How the requested resource will be used.- See Also:
BaseType.enumStrList(String)
-
responseErrorReason
java.lang.String responseErrorReason
Response error if intercepted at response stage.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
responseHeaders
Fetch.HeaderEntry[] responseHeaders
Response headers if intercepted at the response stage.
OPTIONAL -
responseStatusCode
java.lang.Integer responseStatusCode
Response code if intercepted at response stage.
OPTIONAL -
responseStatusText
java.lang.String responseStatusText
Response status text if intercepted at response stage.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.FileSystem.BucketFileSystemLocator extends BaseType<FileSystem.BucketFileSystemLocator> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucketName
java.lang.String bucketName
Bucket name. Not passing abucketNamewill retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)
OPTIONAL -
pathComponents
java.lang.String[] pathComponents
Path to the directory using each path component as an array item. -
storageKey
java.lang.String storageKey
Storage key
-
-
Class Torello.Browser.BrowserAPI.FileSystem.Directory extends BaseType<FileSystem.Directory> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
[No Description Provided by Google] -
nestedDirectories
java.lang.String[] nestedDirectories
[No Description Provided by Google] -
nestedFiles
FileSystem.File[] nestedFiles
Files that are directly nested under this directory.
-
-
Class Torello.Browser.BrowserAPI.FileSystem.File extends BaseType<FileSystem.File> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
lastModified
java.lang.Number lastModified
Timestamp -
name
java.lang.String name
[No Description Provided by Google] -
size
java.lang.Number size
Size in bytes -
type
java.lang.String type
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.HeadlessExperimental.beginFrame$$RET extends BaseType<HeadlessExperimental.beginFrame$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hasDamage
boolean hasDamage
Whether the BeginFrame resulted in damage and, thus, a new frame was committed to the display. Reported for diagnostic uses, may be removed in the future. -
screenshotData
java.lang.String screenshotData
Base64-encoded image data of the screenshot, if one was requested and successfully taken. (Encoded as a base64 string when passed over JSON)
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.HeadlessExperimental.ScreenshotParams extends BaseType<HeadlessExperimental.ScreenshotParams> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
format
java.lang.String format
Image compression format (defaults to png).
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
optimizeForSpeed
java.lang.Boolean optimizeForSpeed
Optimize image encoding for speed, not for resulting size (defaults to false)
OPTIONAL -
quality
java.lang.Integer quality
Compression quality from range [0..100] (jpeg and webp only).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.DatabaseWithObjectStores extends BaseType<IndexedDB.DatabaseWithObjectStores> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Database name. -
objectStores
IndexedDB.ObjectStore[] objectStores
Object stores in this database. -
version
java.lang.Number version
Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.DataEntry extends BaseType<IndexedDB.DataEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
RunTime.RemoteObject key
Key object. -
primaryKey
RunTime.RemoteObject primaryKey
Primary key object. -
value
RunTime.RemoteObject value
Value object.
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.getMetadata$$RET extends BaseType<IndexedDB.getMetadata$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
entriesCount
java.lang.Number entriesCount
the entries count -
keyGeneratorValue
java.lang.Number keyGeneratorValue
the current value of key generator, to become the next inserted key into the object store. Valid if objectStore.autoIncrement is true.
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.Key extends BaseType<IndexedDB.Key> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
array
IndexedDB.Key[] array
Array value.
OPTIONAL -
date
java.lang.Number date
Date value.
OPTIONAL -
number
java.lang.Number number
Number value.
OPTIONAL -
string
java.lang.String string
String value.
OPTIONAL -
type
java.lang.String type
Key type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.KeyPath extends BaseType<IndexedDB.KeyPath> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
array
java.lang.String[] array
Array value.
OPTIONAL -
string
java.lang.String string
String value.
OPTIONAL -
type
java.lang.String type
Key path type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.KeyRange extends BaseType<IndexedDB.KeyRange> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
lower
IndexedDB.Key lower
Lower bound.
OPTIONAL -
lowerOpen
boolean lowerOpen
If true lower bound is open. -
upper
IndexedDB.Key upper
Upper bound.
OPTIONAL -
upperOpen
boolean upperOpen
If true upper bound is open.
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.ObjectStore extends BaseType<IndexedDB.ObjectStore> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
autoIncrement
boolean autoIncrement
If true, object store has auto increment flag set. -
indexes
IndexedDB.ObjectStoreIndex[] indexes
Indexes in this object store. -
keyPath
IndexedDB.KeyPath keyPath
Object store key path. -
name
java.lang.String name
Object store name.
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.ObjectStoreIndex extends BaseType<IndexedDB.ObjectStoreIndex> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
keyPath
IndexedDB.KeyPath keyPath
Index key path. -
multiEntry
boolean multiEntry
If true, index allows multiple entries for a key. -
name
java.lang.String name
Index name. -
unique
boolean unique
If true, index is unique.
-
-
Class Torello.Browser.BrowserAPI.IndexedDB.requestData$$RET extends BaseType<IndexedDB.requestData$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hasMore
boolean hasMore
If true, there are more entries to fetch in the given range. -
objectStoreDataEntries
IndexedDB.DataEntry[] objectStoreDataEntries
Array of object store data entries.
-
-
Class Torello.Browser.BrowserAPI.Input.DragData extends BaseType<Input.DragData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dragOperationsMask
int dragOperationsMask
Bit field representing allowed drag operations. Copy = 1, Link = 2, Move = 16 -
files
java.lang.String[] files
List of filenames that should be included when dropping
OPTIONAL -
items
Input.DragDataItem[] items
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Input.DragDataItem extends BaseType<Input.DragDataItem> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
baseURL
java.lang.String baseURL
Stores the base URL for the contained markup. Only valid whenmimeType== "text/html".
OPTIONAL -
data
java.lang.String data
Depending of the value ofmimeType, it contains the dragged link, text, HTML markup or any other data. -
mimeType
java.lang.String mimeType
Mime type of the dragged data. -
title
java.lang.String title
Title associated with a link. Only valid whenmimeType== "text/uri-list".
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Input.dragIntercepted extends BrowserEvent<Input.dragIntercepted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
Input.DragData data
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Input.TouchPoint extends BaseType<Input.TouchPoint> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
force
java.lang.Number force
Force (default: 1.0).
OPTIONAL -
id
java.lang.Number id
Identifier used to track touch sources between events, must be unique within an event.
OPTIONAL -
radiusX
java.lang.Number radiusX
X radius of the touch area (default: 1.0).
OPTIONAL -
radiusY
java.lang.Number radiusY
Y radius of the touch area (default: 1.0).
OPTIONAL -
rotationAngle
java.lang.Number rotationAngle
Rotation angle (default: 0.0).
OPTIONAL -
tangentialPressure
java.lang.Number tangentialPressure
The normalized tangential pressure, which has a range of [-1,1] (default: 0).
OPTIONALEXPERIMENTAL -
tiltX
java.lang.Number tiltX
The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0)
OPTIONAL -
tiltY
java.lang.Number tiltY
The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).
OPTIONAL -
twist
java.lang.Integer twist
The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0).
OPTIONALEXPERIMENTAL -
x
java.lang.Number x
X coordinate of the event relative to the main frame's viewport in CSS pixels. -
y
java.lang.Number y
Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to the top of the viewport and Y increases as it proceeds towards the bottom of the viewport.
-
-
Class Torello.Browser.BrowserAPI.Inspector.detached extends BrowserEvent<Inspector.detached> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
reason
java.lang.String reason
The reason why connection has been terminated.
-
-
Class Torello.Browser.BrowserAPI.IO.read$$RET extends BaseType<IO.read$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
base64Encoded
java.lang.Boolean base64Encoded
Set if the data is base64-encoded
OPTIONAL -
data
java.lang.String data
Data that were read. -
eof
boolean eof
Set if the end-of-file condition occurred while reading.
-
-
Class Torello.Browser.BrowserAPI.LayerTree.compositingReasons$$RET extends BaseType<LayerTree.compositingReasons$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
compositingReasonIds
java.lang.String[] compositingReasonIds
A list of strings specifying reason IDs for the given layer to become composited. -
compositingReasons
java.lang.String[] compositingReasons
A list of strings specifying reasons for the given layer to become composited.
-
-
Class Torello.Browser.BrowserAPI.LayerTree.Layer extends BaseType<LayerTree.Layer> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
anchorX
java.lang.Number anchorX
Transform anchor point X, absent if no transform specified
OPTIONAL -
anchorY
java.lang.Number anchorY
Transform anchor point Y, absent if no transform specified
OPTIONAL -
anchorZ
java.lang.Number anchorZ
Transform anchor point Z, absent if no transform specified
OPTIONAL -
backendNodeId
java.lang.Integer backendNodeId
The backend id for the node associated with this layer.
OPTIONAL -
drawsContent
boolean drawsContent
Indicates whether this layer hosts any content, rather than being used for transform/scrolling purposes only. -
height
java.lang.Number height
Layer height. -
invisible
java.lang.Boolean invisible
Set if layer is not visible.
OPTIONAL -
layerId
java.lang.String layerId
The unique id for this layer. -
offsetX
java.lang.Number offsetX
Offset from parent layer, X coordinate. -
offsetY
java.lang.Number offsetY
Offset from parent layer, Y coordinate. -
paintCount
int paintCount
Indicates how many time this layer has painted. -
parentLayerId
java.lang.String parentLayerId
The id of parent (not present for root).
OPTIONAL -
scrollRects
LayerTree.ScrollRect[] scrollRects
Rectangles scrolling on main thread only.
OPTIONAL -
stickyPositionConstraint
LayerTree.StickyPositionConstraint stickyPositionConstraint
Sticky position constraint information
OPTIONAL -
transform
java.lang.Number[] transform
Transformation matrix for layer, default is identity matrix
OPTIONAL -
width
java.lang.Number width
Layer width.
-
-
Class Torello.Browser.BrowserAPI.LayerTree.layerPainted extends BrowserEvent<LayerTree.layerPainted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
clip
DOM.Rect clip
Clip rectangle. -
layerId
java.lang.String layerId
The id of the painted layer.
-
-
Class Torello.Browser.BrowserAPI.LayerTree.layerTreeDidChange extends BrowserEvent<LayerTree.layerTreeDidChange> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
layers
LayerTree.Layer[] layers
Layer tree, absent if not in the compositing mode.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.LayerTree.PictureTile extends BaseType<LayerTree.PictureTile> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
picture
java.lang.String picture
Base64-encoded snapshot data. (Encoded as a base64 string when passed over JSON) -
x
java.lang.Number x
Offset from owning layer left boundary -
y
java.lang.Number y
Offset from owning layer top boundary
-
-
Class Torello.Browser.BrowserAPI.LayerTree.ScrollRect extends BaseType<LayerTree.ScrollRect> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
rect
DOM.Rect rect
Rectangle itself. -
type
java.lang.String type
Reason for rectangle to force scrolling on the main thread- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.LayerTree.StickyPositionConstraint extends BaseType<LayerTree.StickyPositionConstraint> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
containingBlockRect
DOM.Rect containingBlockRect
Layout rectangle of the containing block of the sticky element -
nearestLayerShiftingContainingBlock
java.lang.String nearestLayerShiftingContainingBlock
The nearest sticky layer that shifts the containing block
OPTIONAL -
nearestLayerShiftingStickyBox
java.lang.String nearestLayerShiftingStickyBox
The nearest sticky layer that shifts the sticky box
OPTIONAL -
stickyBoxRect
DOM.Rect stickyBoxRect
Layout rectangle of the sticky element before being shifted
-
-
Class Torello.Browser.BrowserAPI.Log.entryAdded extends BrowserEvent<Log.entryAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
entry
Log.LogEntry entry
The entry.
-
-
Class Torello.Browser.BrowserAPI.Log.LogEntry extends BaseType<Log.LogEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
args
RunTime.RemoteObject[] args
Call arguments.
OPTIONAL -
category
java.lang.String category
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
level
java.lang.String level
Log entry severity.- See Also:
BaseType.enumStrList(String)
-
lineNumber
java.lang.Integer lineNumber
Line number in the resource.
OPTIONAL -
networkRequestId
java.lang.String networkRequestId
Identifier of the network request associated with this entry.
OPTIONAL -
source
java.lang.String source
Log entry source.- See Also:
BaseType.enumStrList(String)
-
stackTrace
RunTime.StackTrace stackTrace
JavaScript stack trace.
OPTIONAL -
text
java.lang.String text
Logged text. -
timestamp
java.lang.Number timestamp
Timestamp when this entry was added. -
url
java.lang.String url
URL of the resource if known.
OPTIONAL -
workerId
java.lang.String workerId
Identifier of the worker associated with this entry.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Log.ViolationSetting extends BaseType<Log.ViolationSetting> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Violation type.- See Also:
BaseType.enumStrList(String)
-
threshold
java.lang.Number threshold
Time threshold to trigger upon.
-
-
Class Torello.Browser.BrowserAPI.Media.PlayerError extends BaseType<Media.PlayerError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cause
Media.PlayerError[] cause
Errors potentially have a root cause error, ie, a DecoderError might be caused by an WindowsError -
code
int code
Code is the numeric enum entry for a specific set of error codes, such as PipelineStatusCodes in media/base/pipeline_status.h -
data
JsonValue data
Extra data attached to an error, such as an HRESULT, Video Codec, etc. -
errorType
java.lang.String errorType
[No Description Provided by Google] -
stack
Media.PlayerErrorSourceLocation[] stack
A trace of where this error was caused / where it passed through.
-
-
Class Torello.Browser.BrowserAPI.Media.PlayerErrorSourceLocation extends BaseType<Media.PlayerErrorSourceLocation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
file
java.lang.String file
[No Description Provided by Google] -
line
int line
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.playerErrorsRaised extends BrowserEvent<Media.playerErrorsRaised> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errors
Media.PlayerError[] errors
[No Description Provided by Google] -
playerId
java.lang.String playerId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.PlayerEvent extends BaseType<Media.PlayerEvent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
timestamp
java.lang.Number timestamp
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.playerEventsAdded extends BrowserEvent<Media.playerEventsAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
events
Media.PlayerEvent[] events
[No Description Provided by Google] -
playerId
java.lang.String playerId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.PlayerMessage extends BaseType<Media.PlayerMessage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
level
java.lang.String level
Keep in sync with MediaLogMessageLevel We are currently keeping the message level 'error' separate from the PlayerError type because right now they represent different things, this one being a DVLOG(ERROR) style log message that gets printed based on what log level is selected in the UI, and the other is a representation of a media::PipelineStatus object. Soon however we're going to be moving away from using PipelineStatus for errors and introducing a new error type which should hopefully let us integrate the error log level into the PlayerError type.- See Also:
BaseType.enumStrList(String)
-
message
java.lang.String message
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.playerMessagesLogged extends BrowserEvent<Media.playerMessagesLogged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
messages
Media.PlayerMessage[] messages
[No Description Provided by Google] -
playerId
java.lang.String playerId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.playerPropertiesChanged extends BrowserEvent<Media.playerPropertiesChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
playerId
java.lang.String playerId
[No Description Provided by Google] -
properties
Media.PlayerProperty[] properties
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.PlayerProperty extends BaseType<Media.PlayerProperty> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Media.playersCreated extends BrowserEvent<Media.playersCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
players
java.lang.String[] players
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Memory.DOMCounter extends BaseType<Memory.DOMCounter> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
count
int count
Object count. -
name
java.lang.String name
Object name. Note: object names should be presumed volatile and clients should not expect the returned names to be consistent across runs.
-
-
Class Torello.Browser.BrowserAPI.Memory.getDOMCounters$$RET extends BaseType<Memory.getDOMCounters$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
documents
int documents
[No Description Provided by Google] -
jsEventListeners
int jsEventListeners
[No Description Provided by Google] -
nodes
int nodes
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Memory.Module extends BaseType<Memory.Module> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
baseAddress
java.lang.String baseAddress
Base address where the module is loaded into memory. Encoded as a decimal or hexadecimal (0x prefixed) string. -
name
java.lang.String name
Name of the module. -
size
java.lang.Number size
Size of the module in bytes. -
uuid
java.lang.String uuid
UUID of the module.
-
-
Class Torello.Browser.BrowserAPI.Memory.SamplingProfile extends BaseType<Memory.SamplingProfile> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
modules
Memory.Module[] modules
[No Description Provided by Google] -
samples
Memory.SamplingProfileNode[] samples
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Memory.SamplingProfileNode extends BaseType<Memory.SamplingProfileNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
size
java.lang.Number size
Size of the sampled allocation. -
stack
java.lang.String[] stack
Execution stack at the point of allocation. -
total
java.lang.Number total
Total bytes attributed to this sample.
-
-
Class Torello.Browser.BrowserAPI.Network.AssociatedCookie extends BaseType<Network.AssociatedCookie> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blockedReasons
java.lang.String[] blockedReasons
The reason(s) the cookie was blocked. If empty means the cookie is included.- See Also:
BaseType.enumStrList(String)
-
cookie
Network.Cookie cookie
The cookie object representing the cookie which was not sent. -
exemptionReason
java.lang.String exemptionReason
The reason the cookie should have been blocked by 3PCD but is exempted. A cookie could only have at most one exemption reason.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.AuthChallenge extends BaseType<Network.AuthChallenge> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
origin
java.lang.String origin
Origin of the challenger. -
realm
java.lang.String realm
The realm of the challenge. May be empty. -
scheme
java.lang.String scheme
The authentication scheme used, such as basic or digest -
source
java.lang.String source
Source of the authentication challenge.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.AuthChallengeResponse extends BaseType<Network.AuthChallengeResponse> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
password
java.lang.String password
The password to provide, possibly empty. Should only be set if response is ProvideCredentials.
OPTIONAL -
response
java.lang.String response
The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.- See Also:
BaseType.enumStrList(String)
-
username
java.lang.String username
The username to provide, possibly empty. Should only be set if response is ProvideCredentials.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.BlockedSetCookieWithReason extends BaseType<Network.BlockedSetCookieWithReason> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blockedReasons
java.lang.String[] blockedReasons
The reason(s) this cookie was blocked.- See Also:
BaseType.enumStrList(String)
-
cookie
Network.Cookie cookie
The cookie object which represents the cookie which was not stored. It is optional because sometimes complete cookie information is not available, such as in the case of parsing errors.
OPTIONAL -
cookieLine
java.lang.String cookieLine
The string representing this individual cookie as it would appear in the header. This is not the entire "cookie" or "set-cookie" header which could have multiple cookies.
-
-
Class Torello.Browser.BrowserAPI.Network.CachedResource extends BaseType<Network.CachedResource> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bodySize
java.lang.Number bodySize
Cached response body size. -
response
Network.Response response
Cached response data.
OPTIONAL -
type
java.lang.String type
Type of this resource.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
Resource URL. This is the url of the original network request.
-
-
Class Torello.Browser.BrowserAPI.Network.ClientSecurityState extends BaseType<Network.ClientSecurityState> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
initiatorIPAddressSpace
java.lang.String initiatorIPAddressSpace
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
initiatorIsSecureContext
boolean initiatorIsSecureContext
[No Description Provided by Google] -
privateNetworkRequestPolicy
java.lang.String privateNetworkRequestPolicy
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.ConnectTiming extends BaseType<Network.ConnectTiming> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestTime
java.lang.Number requestTime
Timing's requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime. Matches ResourceTiming's requestTime for the same request (but not for redirected requests).
-
-
Class Torello.Browser.BrowserAPI.Network.ContentSecurityPolicyStatus extends BaseType<Network.ContentSecurityPolicyStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
effectiveDirectives
java.lang.String effectiveDirectives
[No Description Provided by Google] -
isEnforced
boolean isEnforced
[No Description Provided by Google] -
source
java.lang.String source
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.Cookie extends BaseType<Network.Cookie> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
domain
java.lang.String domain
Cookie domain. -
expires
java.lang.Number expires
Cookie expiration date as the number of seconds since the UNIX epoch. -
httpOnly
boolean httpOnly
True if cookie is http-only. -
name
java.lang.String name
Cookie name. -
partitionKey
Network.CookiePartitionKey partitionKey
Cookie partition key.
OPTIONALEXPERIMENTAL -
partitionKeyOpaque
java.lang.Boolean partitionKeyOpaque
True if cookie partition key is opaque.
OPTIONALEXPERIMENTAL -
path
java.lang.String path
Cookie path. -
priority
java.lang.String priority
Cookie Priority
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
sameParty
boolean sameParty
True if cookie is SameParty.
EXPERIMENTALDEPRECATED -
sameSite
java.lang.String sameSite
Cookie SameSite type.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
secure
boolean secure
True if cookie is secure. -
session
boolean session
True in case of session cookie. -
size
int size
Cookie size. -
sourcePort
int sourcePort
Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port. An unspecified port value allows protocol clients to emulate legacy cookie scope for the port. This is a temporary ability and it will be removed in the future.
EXPERIMENTAL -
sourceScheme
java.lang.String sourceScheme
Cookie source scheme type.
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
value
java.lang.String value
Cookie value.
-
-
Class Torello.Browser.BrowserAPI.Network.CookieParam extends BaseType<Network.CookieParam> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
domain
java.lang.String domain
Cookie domain.
OPTIONAL -
expires
java.lang.Number expires
Cookie expiration date, session cookie if not set
OPTIONAL -
httpOnly
java.lang.Boolean httpOnly
True if cookie is http-only.
OPTIONAL -
name
java.lang.String name
Cookie name. -
partitionKey
Network.CookiePartitionKey partitionKey
Cookie partition key. If not set, the cookie will be set as not partitioned.
OPTIONALEXPERIMENTAL -
path
java.lang.String path
Cookie path.
OPTIONAL -
priority
java.lang.String priority
Cookie Priority.
OPTIONALEXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
sameParty
java.lang.Boolean sameParty
True if cookie is SameParty.
OPTIONALEXPERIMENTAL -
sameSite
java.lang.String sameSite
Cookie SameSite type.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
secure
java.lang.Boolean secure
True if cookie is secure.
OPTIONAL -
sourcePort
java.lang.Integer sourcePort
Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port. An unspecified port value allows protocol clients to emulate legacy cookie scope for the port. This is a temporary ability and it will be removed in the future.
OPTIONALEXPERIMENTAL -
sourceScheme
java.lang.String sourceScheme
Cookie source scheme type.
OPTIONALEXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
The request-URI to associate with the setting of the cookie. This value can affect the default domain, path, source port, and source scheme values of the created cookie.
OPTIONAL -
value
java.lang.String value
Cookie value.
-
-
Class Torello.Browser.BrowserAPI.Network.CookiePartitionKey extends BaseType<Network.CookiePartitionKey> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hasCrossSiteAncestor
boolean hasCrossSiteAncestor
Indicates if the cookie has any ancestors that are cross-site to the topLevelSite. -
topLevelSite
java.lang.String topLevelSite
The site of the top-level URL the browser was visiting at the start of the request to the endpoint that set the cookie.
-
-
Class Torello.Browser.BrowserAPI.Network.CorsErrorStatus extends BaseType<Network.CorsErrorStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
corsError
java.lang.String corsError
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
failedParameter
java.lang.String failedParameter
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.CrossOriginEmbedderPolicyStatus extends BaseType<Network.CrossOriginEmbedderPolicyStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
reportingEndpoint
java.lang.String reportingEndpoint
[No Description Provided by Google]
OPTIONAL -
reportOnlyReportingEndpoint
java.lang.String reportOnlyReportingEndpoint
[No Description Provided by Google]
OPTIONAL -
reportOnlyValue
java.lang.String reportOnlyValue
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
value
java.lang.String value
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.CrossOriginOpenerPolicyStatus extends BaseType<Network.CrossOriginOpenerPolicyStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
reportingEndpoint
java.lang.String reportingEndpoint
[No Description Provided by Google]
OPTIONAL -
reportOnlyReportingEndpoint
java.lang.String reportOnlyReportingEndpoint
[No Description Provided by Google]
OPTIONAL -
reportOnlyValue
java.lang.String reportOnlyValue
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
value
java.lang.String value
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.dataReceived extends BrowserEvent<Network.dataReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
Data that was received. (Encoded as a base64 string when passed over JSON)
OPTIONALEXPERIMENTAL -
dataLength
int dataLength
Data chunk length. -
encodedDataLength
int encodedDataLength
Actual bytes received (might be less than dataLength for compressed encodings). -
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.directTCPSocketAborted extends BrowserEvent<Network.directTCPSocketAborted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorMessage
java.lang.String errorMessage
[No Description Provided by Google] -
identifier
java.lang.String identifier
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directTCPSocketChunkReceived extends BrowserEvent<Network.directTCPSocketChunkReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
[No Description Provided by Google] -
identifier
java.lang.String identifier
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directTCPSocketChunkSent extends BrowserEvent<Network.directTCPSocketChunkSent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
[No Description Provided by Google] -
identifier
java.lang.String identifier
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directTCPSocketClosed extends BrowserEvent<Network.directTCPSocketClosed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directTCPSocketCreated extends BrowserEvent<Network.directTCPSocketCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
initiator
Network.Initiator initiator
[No Description Provided by Google]
OPTIONAL -
options
Network.DirectTCPSocketOptions options
[No Description Provided by Google] -
remoteAddr
java.lang.String remoteAddr
[No Description Provided by Google] -
remotePort
int remotePort
Unsigned int 16. -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directTCPSocketOpened extends BrowserEvent<Network.directTCPSocketOpened> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
localAddr
java.lang.String localAddr
[No Description Provided by Google]
OPTIONAL -
localPort
java.lang.Integer localPort
Expected to be unsigned integer.
OPTIONAL -
remoteAddr
java.lang.String remoteAddr
[No Description Provided by Google] -
remotePort
int remotePort
Expected to be unsigned integer. -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.DirectTCPSocketOptions extends BaseType<Network.DirectTCPSocketOptions> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dnsQueryType
java.lang.String dnsQueryType
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
keepAliveDelay
java.lang.Number keepAliveDelay
Expected to be unsigned integer.
OPTIONAL -
noDelay
boolean noDelay
TCP_NODELAY option -
receiveBufferSize
java.lang.Number receiveBufferSize
Expected to be unsigned integer.
OPTIONAL -
sendBufferSize
java.lang.Number sendBufferSize
Expected to be unsigned integer.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.DirectUDPMessage extends BaseType<Network.DirectUDPMessage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
[No Description Provided by Google] -
remoteAddr
java.lang.String remoteAddr
Null for connected mode.
OPTIONAL -
remotePort
java.lang.Integer remotePort
Null for connected mode. Expected to be unsigned integer.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.directUDPSocketAborted extends BrowserEvent<Network.directUDPSocketAborted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorMessage
java.lang.String errorMessage
[No Description Provided by Google] -
identifier
java.lang.String identifier
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directUDPSocketChunkReceived extends BrowserEvent<Network.directUDPSocketChunkReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
message
Network.DirectUDPMessage message
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directUDPSocketChunkSent extends BrowserEvent<Network.directUDPSocketChunkSent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
message
Network.DirectUDPMessage message
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directUDPSocketClosed extends BrowserEvent<Network.directUDPSocketClosed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directUDPSocketCreated extends BrowserEvent<Network.directUDPSocketCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
initiator
Network.Initiator initiator
[No Description Provided by Google]
OPTIONAL -
options
Network.DirectUDPSocketOptions options
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.directUDPSocketOpened extends BrowserEvent<Network.directUDPSocketOpened> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
[No Description Provided by Google] -
localAddr
java.lang.String localAddr
[No Description Provided by Google] -
localPort
int localPort
Expected to be unsigned integer. -
remoteAddr
java.lang.String remoteAddr
[No Description Provided by Google]
OPTIONAL -
remotePort
java.lang.Integer remotePort
Expected to be unsigned integer.
OPTIONAL -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.DirectUDPSocketOptions extends BaseType<Network.DirectUDPSocketOptions> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dnsQueryType
java.lang.String dnsQueryType
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
localAddr
java.lang.String localAddr
[No Description Provided by Google]
OPTIONAL -
localPort
java.lang.Integer localPort
Unsigned int 16.
OPTIONAL -
receiveBufferSize
java.lang.Number receiveBufferSize
Expected to be unsigned integer.
OPTIONAL -
remoteAddr
java.lang.String remoteAddr
[No Description Provided by Google]
OPTIONAL -
remotePort
java.lang.Integer remotePort
Unsigned int 16.
OPTIONAL -
sendBufferSize
java.lang.Number sendBufferSize
Expected to be unsigned integer.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.eventSourceMessageReceived extends BrowserEvent<Network.eventSourceMessageReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
Message content. -
eventId
java.lang.String eventId
Message identifier. -
eventName
java.lang.String eventName
Message type. -
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.ExemptedSetCookieWithReason extends BaseType<Network.ExemptedSetCookieWithReason> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cookie
Network.Cookie cookie
The cookie object representing the cookie. -
cookieLine
java.lang.String cookieLine
The string representing this individual cookie as it would appear in the header. -
exemptionReason
java.lang.String exemptionReason
The reason the cookie was exempted.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.getResponseBody$$RET extends BaseType<Network.getResponseBody$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
base64Encoded
boolean base64Encoded
True, if content was sent as base64. -
body
java.lang.String body
Response body.
-
-
Class Torello.Browser.BrowserAPI.Network.getResponseBodyForInterception$$RET extends BaseType<Network.getResponseBodyForInterception$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
base64Encoded
boolean base64Encoded
True, if content was sent as base64. -
body
java.lang.String body
Response body.
-
-
Class Torello.Browser.BrowserAPI.Network.Initiator extends BaseType<Network.Initiator> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
java.lang.Number columnNumber
Initiator column number, set for Parser type or for Script type (when script is importing module) (0-based).
OPTIONAL -
lineNumber
java.lang.Number lineNumber
Initiator line number, set for Parser type or for Script type (when script is importing module) (0-based).
OPTIONAL -
requestId
java.lang.String requestId
Set if another request triggered this request (e.g. preflight).
OPTIONAL -
stack
RunTime.StackTrace stack
Initiator JavaScript stack trace, set for Script only. Requires the Debugger domain to be enabled.
OPTIONAL -
type
java.lang.String type
Type of this initiator.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.loadingFailed extends BrowserEvent<Network.loadingFailed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blockedReason
java.lang.String blockedReason
The reason why loading was blocked, if any.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
canceled
java.lang.Boolean canceled
True if loading was canceled.
OPTIONAL -
corsErrorStatus
Network.CorsErrorStatus corsErrorStatus
The reason why loading was blocked by CORS, if any.
OPTIONAL -
errorText
java.lang.String errorText
Error message. List of network errors: https://cs.chromium.org/chromium/src/net/base/net_error_list.h -
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp. -
type
java.lang.String type
Resource type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.loadingFinished extends BrowserEvent<Network.loadingFinished> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
encodedDataLength
java.lang.Number encodedDataLength
Total number of bytes received for this request. -
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.LoadNetworkResourceOptions extends BaseType<Network.LoadNetworkResourceOptions> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
disableCache
boolean disableCache
[No Description Provided by Google] -
includeCredentials
boolean includeCredentials
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.LoadNetworkResourcePageResult extends BaseType<Network.LoadNetworkResourcePageResult> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
headers
JsonValue headers
Response headers.
OPTIONAL -
httpStatusCode
java.lang.Number httpStatusCode
[No Description Provided by Google]
OPTIONAL -
netError
java.lang.Number netError
Optional values used for error reporting.
OPTIONAL -
netErrorName
java.lang.String netErrorName
[No Description Provided by Google]
OPTIONAL -
stream
java.lang.String stream
If successful, one of the following two fields holds the result.
OPTIONAL -
success
boolean success
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.PostDataEntry extends BaseType<Network.PostDataEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bytes
java.lang.String bytes
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.ReportingApiEndpoint extends BaseType<Network.ReportingApiEndpoint> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
groupName
java.lang.String groupName
Name of the endpoint group. -
url
java.lang.String url
The URL of the endpoint to which reports may be delivered.
-
-
Class Torello.Browser.BrowserAPI.Network.reportingApiEndpointsChangedForOrigin extends BrowserEvent<Network.reportingApiEndpointsChangedForOrigin> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
endpoints
Network.ReportingApiEndpoint[] endpoints
[No Description Provided by Google] -
origin
java.lang.String origin
Origin of the document(s) which configured the endpoints.
-
-
Class Torello.Browser.BrowserAPI.Network.ReportingApiReport extends BaseType<Network.ReportingApiReport> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
body
JsonValue body
[No Description Provided by Google] -
completedAttempts
int completedAttempts
The number of delivery attempts made so far, not including an active attempt. -
depth
int depth
How many uploads deep the related request was. -
destination
java.lang.String destination
The name of the endpoint group that should be used to deliver the report. -
id
java.lang.String id
[No Description Provided by Google] -
initiatorUrl
java.lang.String initiatorUrl
The URL of the document that triggered the report. -
status
java.lang.String status
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
timestamp
java.lang.Number timestamp
When the report was generated. -
type
java.lang.String type
The type of the report (specifies the set of data that is contained in the report body).
-
-
Class Torello.Browser.BrowserAPI.Network.reportingApiReportAdded extends BrowserEvent<Network.reportingApiReportAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
report
Network.ReportingApiReport report
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.reportingApiReportUpdated extends BrowserEvent<Network.reportingApiReportUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
report
Network.ReportingApiReport report
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Network.Request extends BaseType<Network.Request> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hasPostData
java.lang.Boolean hasPostData
True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
OPTIONAL -
headers
JsonValue headers
HTTP request headers. -
initialPriority
java.lang.String initialPriority
Priority of the resource request at the time request is sent.- See Also:
BaseType.enumStrList(String)
-
isLinkPreload
java.lang.Boolean isLinkPreload
Whether is loaded via link preload.
OPTIONAL -
isSameSite
java.lang.Boolean isSameSite
True if this resource request is considered to be the 'same site' as the request corresponding to the main frame.
OPTIONALEXPERIMENTAL -
method
java.lang.String method
HTTP request method. -
mixedContentType
java.lang.String mixedContentType
The mixed content type of the request.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
postData
java.lang.String postData
HTTP POST request data. Use postDataEntries instead.
OPTIONALDEPRECATED -
postDataEntries
Network.PostDataEntry[] postDataEntries
Request body elements (post data broken into individual entries).
OPTIONALEXPERIMENTAL -
referrerPolicy
java.lang.String referrerPolicy
The referrer policy of the request, as defined in https://www.w3.org/TR/referrer-policy/- See Also:
BaseType.enumStrList(String)
-
trustTokenParams
Network.TrustTokenParams trustTokenParams
Set for requests when the TrustToken API is used. Contains the parameters passed by the developer (e.g. via "fetch") as understood by the backend.
OPTIONALEXPERIMENTAL -
url
java.lang.String url
Request URL (without fragment). -
urlFragment
java.lang.String urlFragment
Fragment of the requested URL starting with hash, if present.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.requestIntercepted extends BrowserEvent<Network.requestIntercepted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
authChallenge
Network.AuthChallenge authChallenge
Details of the Authorization Challenge encountered. If this is set then continueInterceptedRequest must contain an authChallengeResponse.
OPTIONAL -
frameId
java.lang.String frameId
The id of the frame that initiated the request. -
interceptionId
java.lang.String interceptionId
Each request the page makes will have a unique id, however if any redirects are encountered while processing that fetch, they will be reported with the same id as the original fetch. Likewise if HTTP authentication is needed then the same fetch id will be used. -
isDownload
java.lang.Boolean isDownload
Set if the request is a navigation that will result in a download. Only present after response is received from the server (i.e. HeadersReceived stage).
OPTIONAL -
isNavigationRequest
boolean isNavigationRequest
Whether this is a navigation request, which can abort the navigation completely. -
redirectUrl
java.lang.String redirectUrl
Redirect location, only sent if a redirect was intercepted.
OPTIONAL -
request
Network.Request request
[No Description Provided by Google] -
requestId
java.lang.String requestId
If the intercepted request had a corresponding requestWillBeSent event fired for it, then this requestId will be the same as the requestId present in the requestWillBeSent event.
OPTIONAL -
resourceType
java.lang.String resourceType
How the requested resource will be used.- See Also:
BaseType.enumStrList(String)
-
responseErrorReason
java.lang.String responseErrorReason
Response error if intercepted at response stage or if redirect occurred while intercepting request.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
responseHeaders
JsonValue responseHeaders
Response headers if intercepted at the response stage or if redirect occurred while intercepting request or auth retry occurred.
OPTIONAL -
responseStatusCode
java.lang.Integer responseStatusCode
Response code if intercepted at response stage or if redirect occurred while intercepting request or auth retry occurred.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.RequestPattern extends BaseType<Network.RequestPattern> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
interceptionStage
java.lang.String interceptionStage
Stage at which to begin intercepting requests. Default is Request.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
resourceType
java.lang.String resourceType
If set, only requests for matching resource types will be intercepted.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
urlPattern
java.lang.String urlPattern
Wildcards ('*'-> zero or more,'?'-> exactly one) are allowed. Escape character is backslash. Omitting is equivalent to"*".
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.requestServedFromCache extends BrowserEvent<Network.requestServedFromCache> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestId
java.lang.String requestId
Request identifier.
-
-
Class Torello.Browser.BrowserAPI.Network.requestWillBeSent extends BrowserEvent<Network.requestWillBeSent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
documentURL
java.lang.String documentURL
URL of the document this request is loaded for. -
frameId
java.lang.String frameId
Frame identifier.
OPTIONAL -
hasUserGesture
java.lang.Boolean hasUserGesture
Whether the request is initiated by a user gesture. Defaults to false.
OPTIONAL -
initiator
Network.Initiator initiator
Request initiator. -
loaderId
java.lang.String loaderId
Loader identifier. Empty string if the request is fetched from worker. -
redirectHasExtraInfo
boolean redirectHasExtraInfo
In the case that redirectResponse is populated, this flag indicates whether requestWillBeSentExtraInfo and responseReceivedExtraInfo events will be or were emitted for the request which was just redirected.
EXPERIMENTAL -
redirectResponse
Network.Response redirectResponse
Redirect response data.
OPTIONAL -
request
Network.Request request
Request data. -
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp. -
type
java.lang.String type
Type of this resource.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
wallTime
java.lang.Number wallTime
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.requestWillBeSentExtraInfo extends BrowserEvent<Network.requestWillBeSentExtraInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
associatedCookies
Network.AssociatedCookie[] associatedCookies
A list of cookies potentially associated to the requested URL. This includes both cookies sent with the request and the ones not sent; the latter are distinguished by having blockedReasons field set. -
clientSecurityState
Network.ClientSecurityState clientSecurityState
The client security state set for the request.
OPTIONAL -
connectTiming
Network.ConnectTiming connectTiming
Connection timing information for the request.
EXPERIMENTAL -
headers
JsonValue headers
Raw request headers as they will be sent over the wire. -
requestId
java.lang.String requestId
Request identifier. Used to match this information to an existing requestWillBeSent event. -
siteHasCookieInOtherPartition
java.lang.Boolean siteHasCookieInOtherPartition
Whether the site has partitioned cookies stored in a partition different than the current one.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.resourceChangedPriority extends BrowserEvent<Network.resourceChangedPriority> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
newPriority
java.lang.String newPriority
New priority- See Also:
BaseType.enumStrList(String)
-
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.ResourceTiming extends BaseType<Network.ResourceTiming> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
connectEnd
java.lang.Number connectEnd
Connected to the remote host. -
connectStart
java.lang.Number connectStart
Started connecting to the remote host. -
dnsEnd
java.lang.Number dnsEnd
Finished DNS address resolve. -
dnsStart
java.lang.Number dnsStart
Started DNS address resolve. -
proxyEnd
java.lang.Number proxyEnd
Finished resolving proxy. -
proxyStart
java.lang.Number proxyStart
Started resolving proxy. -
pushEnd
java.lang.Number pushEnd
Time the server finished pushing request.
EXPERIMENTAL -
pushStart
java.lang.Number pushStart
Time the server started pushing request.
EXPERIMENTAL -
receiveHeadersEnd
java.lang.Number receiveHeadersEnd
Finished receiving response headers. -
receiveHeadersStart
java.lang.Number receiveHeadersStart
Started receiving response headers.
EXPERIMENTAL -
requestTime
java.lang.Number requestTime
Timing's requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime. -
sendEnd
java.lang.Number sendEnd
Finished sending request. -
sendStart
java.lang.Number sendStart
Started sending request. -
sslEnd
java.lang.Number sslEnd
Finished SSL handshake. -
sslStart
java.lang.Number sslStart
Started SSL handshake. -
workerCacheLookupStart
java.lang.Number workerCacheLookupStart
Started cache lookup when the source was evaluated tocache.
OPTIONALEXPERIMENTAL -
workerFetchStart
java.lang.Number workerFetchStart
Started fetch event.
EXPERIMENTAL -
workerReady
java.lang.Number workerReady
Finished Starting ServiceWorker.
EXPERIMENTAL -
workerRespondWithSettled
java.lang.Number workerRespondWithSettled
Settled fetch event respondWith promise.
EXPERIMENTAL -
workerRouterEvaluationStart
java.lang.Number workerRouterEvaluationStart
Started ServiceWorker static routing source evaluation.
OPTIONALEXPERIMENTAL -
workerStart
java.lang.Number workerStart
Started running ServiceWorker.
EXPERIMENTAL
-
-
Class Torello.Browser.BrowserAPI.Network.Response extends BaseType<Network.Response> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
alternateProtocolUsage
java.lang.String alternateProtocolUsage
The reason why Chrome uses a specific transport protocol for HTTP semantics.
OPTIONALEXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
cacheStorageCacheName
java.lang.String cacheStorageCacheName
Cache Storage Cache Name.
OPTIONAL -
charset
java.lang.String charset
Resource charset as determined by the browser (if applicable). -
connectionId
java.lang.Number connectionId
Physical connection id that was actually used for this request. -
connectionReused
boolean connectionReused
Specifies whether physical connection was actually reused for this request. -
encodedDataLength
java.lang.Number encodedDataLength
Total number of bytes received for this request so far. -
fromDiskCache
java.lang.Boolean fromDiskCache
Specifies that the request was served from the disk cache.
OPTIONAL -
fromEarlyHints
java.lang.Boolean fromEarlyHints
Specifies that the request was served from the prefetch cache.
OPTIONAL -
fromPrefetchCache
java.lang.Boolean fromPrefetchCache
Specifies that the request was served from the prefetch cache.
OPTIONAL -
fromServiceWorker
java.lang.Boolean fromServiceWorker
Specifies that the request was served from the ServiceWorker.
OPTIONAL -
headers
JsonValue headers
HTTP response headers. -
headersText
java.lang.String headersText
HTTP response headers text. This has been replaced by the headers in Network.responseReceivedExtraInfo.
OPTIONALDEPRECATED -
isIpProtectionUsed
java.lang.Boolean isIpProtectionUsed
Indicates whether the request was sent through IP Protection proxies. If set to true, the request used the IP Protection privacy feature.
OPTIONALEXPERIMENTAL -
mimeType
java.lang.String mimeType
Resource mimeType as determined by the browser. -
protocol
java.lang.String protocol
Protocol used to fetch this request.
OPTIONAL -
remoteIPAddress
java.lang.String remoteIPAddress
Remote IP address.
OPTIONAL -
remotePort
java.lang.Integer remotePort
Remote port.
OPTIONAL -
requestHeaders
JsonValue requestHeaders
Refined HTTP request headers that were actually transmitted over the network.
OPTIONAL -
requestHeadersText
java.lang.String requestHeadersText
HTTP request headers text. This has been replaced by the headers in Network.requestWillBeSentExtraInfo.
OPTIONALDEPRECATED -
responseTime
java.lang.Number responseTime
The time at which the returned response was generated.
OPTIONAL -
securityDetails
Network.SecurityDetails securityDetails
Security details for the request.
OPTIONAL -
securityState
java.lang.String securityState
Security state of the request resource.- See Also:
BaseType.enumStrList(String)
-
serviceWorkerResponseSource
java.lang.String serviceWorkerResponseSource
Response source of response from ServiceWorker.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
serviceWorkerRouterInfo
Network.ServiceWorkerRouterInfo serviceWorkerRouterInfo
Information about how ServiceWorker Static Router API was used. If this field is set withmatchedSourceTypefield, a matching rule is found. If this field is set withoutmatchedSource, no matching rule is found. Otherwise, the API is not used.
OPTIONALEXPERIMENTAL -
status
int status
HTTP response status code. -
statusText
java.lang.String statusText
HTTP response status text. -
timing
Network.ResourceTiming timing
Timing information for the given request.
OPTIONAL -
url
java.lang.String url
Response URL. This URL can be different from CachedResource.url in case of redirect.
-
-
Class Torello.Browser.BrowserAPI.Network.responseReceived extends BrowserEvent<Network.responseReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Frame identifier.
OPTIONAL -
hasExtraInfo
boolean hasExtraInfo
Indicates whether requestWillBeSentExtraInfo and responseReceivedExtraInfo events will be or were emitted for this request.
EXPERIMENTAL -
loaderId
java.lang.String loaderId
Loader identifier. Empty string if the request is fetched from worker. -
requestId
java.lang.String requestId
Request identifier. -
response
Network.Response response
Response data. -
timestamp
java.lang.Number timestamp
Timestamp. -
type
java.lang.String type
Resource type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.responseReceivedEarlyHints extends BrowserEvent<Network.responseReceivedEarlyHints> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
headers
JsonValue headers
Raw response headers as they were received over the wire. Duplicate headers in the response are represented as a single key with their values concatentated using\nas the separator. See alsoheadersTextthat contains verbatim text for HTTP/1.*. -
requestId
java.lang.String requestId
Request identifier. Used to match this information to another responseReceived event.
-
-
Class Torello.Browser.BrowserAPI.Network.responseReceivedExtraInfo extends BrowserEvent<Network.responseReceivedExtraInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blockedCookies
Network.BlockedSetCookieWithReason[] blockedCookies
A list of cookies which were not stored from the response along with the corresponding reasons for blocking. The cookies here may not be valid due to syntax errors, which are represented by the invalid cookie line string instead of a proper cookie. -
cookiePartitionKey
Network.CookiePartitionKey cookiePartitionKey
The cookie partition key that will be used to store partitioned cookies set in this response. Only sent when partitioned cookies are enabled.
OPTIONALEXPERIMENTAL -
cookiePartitionKeyOpaque
java.lang.Boolean cookiePartitionKeyOpaque
True if partitioned cookies are enabled, but the partition key is not serializable to string.
OPTIONAL -
exemptedCookies
Network.ExemptedSetCookieWithReason[] exemptedCookies
A list of cookies which should have been blocked by 3PCD but are exempted and stored from the response with the corresponding reason.
OPTIONAL -
headers
JsonValue headers
Raw response headers as they were received over the wire. Duplicate headers in the response are represented as a single key with their values concatentated using\nas the separator. See alsoheadersTextthat contains verbatim text for HTTP/1.*. -
headersText
java.lang.String headersText
Raw response header text as it was received over the wire. The raw text may not always be available, such as in the case of HTTP/2 or QUIC.
OPTIONAL -
requestId
java.lang.String requestId
Request identifier. Used to match this information to another responseReceived event. -
resourceIPAddressSpace
java.lang.String resourceIPAddressSpace
The IP address space of the resource. The address space can only be determined once the transport established the connection, so we can't send it inrequestWillBeSentExtraInfo.- See Also:
BaseType.enumStrList(String)
-
statusCode
int statusCode
The status code of the response. This is useful in cases the request failed and no responseReceived event is triggered, which is the case for, e.g., CORS errors. This is also the correct status code for cached requests, where the status in responseReceived is a 200 and this will be 304.
-
-
Class Torello.Browser.BrowserAPI.Network.SecurityDetails extends BaseType<Network.SecurityDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
certificateId
int certificateId
Certificate ID value. -
certificateTransparencyCompliance
java.lang.String certificateTransparencyCompliance
Whether the request complied with Certificate Transparency policy- See Also:
BaseType.enumStrList(String)
-
cipher
java.lang.String cipher
Cipher name. -
encryptedClientHello
boolean encryptedClientHello
Whether the connection used Encrypted ClientHello -
issuer
java.lang.String issuer
Name of the issuing CA. -
keyExchange
java.lang.String keyExchange
Key Exchange used by the connection, or the empty string if not applicable. -
keyExchangeGroup
java.lang.String keyExchangeGroup
(EC)DH group used by the connection, if applicable.
OPTIONAL -
mac
java.lang.String mac
TLS MAC. Note that AEAD ciphers do not have separate MACs.
OPTIONAL -
protocol
java.lang.String protocol
Protocol name (e.g. "TLS 1.2" or "QUIC"). -
sanList
java.lang.String[] sanList
Subject Alternative Name (SAN) DNS names and IP addresses. -
serverSignatureAlgorithm
java.lang.Integer serverSignatureAlgorithm
The signature algorithm used by the server in the TLS server signature, represented as a TLS SignatureScheme code point. Omitted if not applicable or not known.
OPTIONAL -
signedCertificateTimestampList
Network.SignedCertificateTimestamp[] signedCertificateTimestampList
List of signed certificate timestamps (SCTs). -
subjectName
java.lang.String subjectName
Certificate subject name. -
validFrom
java.lang.Number validFrom
Certificate valid from date. -
validTo
java.lang.Number validTo
Certificate valid to (expiration) date
-
-
Class Torello.Browser.BrowserAPI.Network.SecurityIsolationStatus extends BaseType<Network.SecurityIsolationStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
coep
Network.CrossOriginEmbedderPolicyStatus coep
[No Description Provided by Google]
OPTIONAL -
coop
Network.CrossOriginOpenerPolicyStatus coop
[No Description Provided by Google]
OPTIONAL -
csp
Network.ContentSecurityPolicyStatus[] csp
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.ServiceWorkerRouterInfo extends BaseType<Network.ServiceWorkerRouterInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
actualSourceType
java.lang.String actualSourceType
The actual router source used.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
matchedSourceType
java.lang.String matchedSourceType
The router source of the matched rule. If there is a matched rule, this field will be set, otherwise no value will be set.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
ruleIdMatched
java.lang.Integer ruleIdMatched
ID of the rule matched. If there is a matched rule, this field will be set, otherwiser no value will be set.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.SignedCertificateTimestamp extends BaseType<Network.SignedCertificateTimestamp> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hashAlgorithm
java.lang.String hashAlgorithm
Hash algorithm. -
logDescription
java.lang.String logDescription
Log name / description. -
logId
java.lang.String logId
Log ID. -
origin
java.lang.String origin
Origin. -
signatureAlgorithm
java.lang.String signatureAlgorithm
Signature algorithm. -
signatureData
java.lang.String signatureData
Signature data. -
status
java.lang.String status
Validation status. -
timestamp
java.lang.Number timestamp
Issuance date. Unlike TimeSinceEpoch, this contains the number of milliseconds since January 1, 1970, UTC, not the number of seconds.
-
-
Class Torello.Browser.BrowserAPI.Network.SignedExchangeError extends BaseType<Network.SignedExchangeError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorField
java.lang.String errorField
The field which caused the error.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
message
java.lang.String message
Error message. -
signatureIndex
java.lang.Integer signatureIndex
The index of the signature which caused the error.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.SignedExchangeHeader extends BaseType<Network.SignedExchangeHeader> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
headerIntegrity
java.lang.String headerIntegrity
Signed exchange header integrity hash in the form ofsha256-<base64-hash-value>. -
requestUrl
java.lang.String requestUrl
Signed exchange request URL. -
responseCode
int responseCode
Signed exchange response code. -
responseHeaders
JsonValue responseHeaders
Signed exchange response headers. -
signatures
Network.SignedExchangeSignature[] signatures
Signed exchange response signature.
-
-
Class Torello.Browser.BrowserAPI.Network.SignedExchangeInfo extends BaseType<Network.SignedExchangeInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errors
Network.SignedExchangeError[] errors
Errors occurred while handling the signed exchange.
OPTIONAL -
hasExtraInfo
boolean hasExtraInfo
Whether network response for the signed exchange was accompanied by extra headers. -
header
Network.SignedExchangeHeader header
Information about the signed exchange header.
OPTIONAL -
outerResponse
Network.Response outerResponse
The outer response of signed HTTP exchange which was received from network. -
securityDetails
Network.SecurityDetails securityDetails
Security details for the signed exchange header.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Network.signedExchangeReceived extends BrowserEvent<Network.signedExchangeReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
info
Network.SignedExchangeInfo info
Information about the signed exchange response. -
requestId
java.lang.String requestId
Request identifier.
-
-
Class Torello.Browser.BrowserAPI.Network.SignedExchangeSignature extends BaseType<Network.SignedExchangeSignature> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
certificates
java.lang.String[] certificates
The encoded certificates.
OPTIONAL -
certSha256
java.lang.String certSha256
The hex string of signed exchange signature cert sha256.
OPTIONAL -
certUrl
java.lang.String certUrl
Signed exchange signature cert Url.
OPTIONAL -
date
int date
Signed exchange signature date. -
expires
int expires
Signed exchange signature expires. -
integrity
java.lang.String integrity
Signed exchange signature integrity. -
label
java.lang.String label
Signed exchange signature label. -
signature
java.lang.String signature
The hex string of signed exchange signature. -
validityUrl
java.lang.String validityUrl
Signed exchange signature validity Url.
-
-
Class Torello.Browser.BrowserAPI.Network.subresourceWebBundleInnerResponseError extends BrowserEvent<Network.subresourceWebBundleInnerResponseError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bundleRequestId
java.lang.String bundleRequestId
Bundle request identifier. Used to match this information to another event. This made be absent in case when the instrumentation was enabled only after webbundle was parsed.
OPTIONAL -
errorMessage
java.lang.String errorMessage
Error message -
innerRequestId
java.lang.String innerRequestId
Request identifier of the subresource request -
innerRequestURL
java.lang.String innerRequestURL
URL of the subresource resource.
-
-
Class Torello.Browser.BrowserAPI.Network.subresourceWebBundleInnerResponseParsed extends BrowserEvent<Network.subresourceWebBundleInnerResponseParsed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bundleRequestId
java.lang.String bundleRequestId
Bundle request identifier. Used to match this information to another event. This made be absent in case when the instrumentation was enabled only after webbundle was parsed.
OPTIONAL -
innerRequestId
java.lang.String innerRequestId
Request identifier of the subresource request -
innerRequestURL
java.lang.String innerRequestURL
URL of the subresource resource.
-
-
Class Torello.Browser.BrowserAPI.Network.subresourceWebBundleMetadataError extends BrowserEvent<Network.subresourceWebBundleMetadataError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorMessage
java.lang.String errorMessage
Error message -
requestId
java.lang.String requestId
Request identifier. Used to match this information to another event.
-
-
Class Torello.Browser.BrowserAPI.Network.subresourceWebBundleMetadataReceived extends BrowserEvent<Network.subresourceWebBundleMetadataReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestId
java.lang.String requestId
Request identifier. Used to match this information to another event. -
urls
java.lang.String[] urls
A list of URLs of resources in the subresource Web Bundle.
-
-
Class Torello.Browser.BrowserAPI.Network.trustTokenOperationDone extends BrowserEvent<Network.trustTokenOperationDone> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
issuedTokenCount
java.lang.Integer issuedTokenCount
The number of obtained Trust Tokens on a successful "Issuance" operation.
OPTIONAL -
issuerOrigin
java.lang.String issuerOrigin
Origin of the issuer in case of a "Issuance" or "Redemption" operation.
OPTIONAL -
requestId
java.lang.String requestId
[No Description Provided by Google] -
status
java.lang.String status
Detailed success or error status of the operation. 'AlreadyExists' also signifies a successful operation, as the result of the operation already exists und thus, the operation was abort preemptively (e.g. a cache hit).- See Also:
BaseType.enumStrList(String)
-
topLevelOrigin
java.lang.String topLevelOrigin
Top level origin. The context in which the operation was attempted.
OPTIONAL -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.TrustTokenParams extends BaseType<Network.TrustTokenParams> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
issuers
java.lang.String[] issuers
Origins of issuers from whom to request tokens or redemption records.
OPTIONAL -
operation
java.lang.String operation
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
refreshPolicy
java.lang.String refreshPolicy
Only set for "token-redemption" operation and determine whether to request a fresh SRR or use a still valid cached SRR.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Network.webSocketClosed extends BrowserEvent<Network.webSocketClosed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.webSocketCreated extends BrowserEvent<Network.webSocketCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
initiator
Network.Initiator initiator
Request initiator.
OPTIONAL -
requestId
java.lang.String requestId
Request identifier. -
url
java.lang.String url
WebSocket request URL.
-
-
Class Torello.Browser.BrowserAPI.Network.WebSocketFrame extends BaseType<Network.WebSocketFrame> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
mask
boolean mask
WebSocket message mask. -
opcode
java.lang.Number opcode
WebSocket message opcode. -
payloadData
java.lang.String payloadData
WebSocket message payload data. If the opcode is 1, this is a text message and payloadData is a UTF-8 string. If the opcode isn't 1, then payloadData is a base64 encoded string representing binary data.
-
-
Class Torello.Browser.BrowserAPI.Network.webSocketFrameError extends BrowserEvent<Network.webSocketFrameError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorMessage
java.lang.String errorMessage
WebSocket error message. -
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.webSocketFrameReceived extends BrowserEvent<Network.webSocketFrameReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestId
java.lang.String requestId
Request identifier. -
response
Network.WebSocketFrame response
WebSocket response data. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.webSocketFrameSent extends BrowserEvent<Network.webSocketFrameSent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestId
java.lang.String requestId
Request identifier. -
response
Network.WebSocketFrame response
WebSocket response data. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.webSocketHandshakeResponseReceived extends BrowserEvent<Network.webSocketHandshakeResponseReceived> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
requestId
java.lang.String requestId
Request identifier. -
response
Network.WebSocketResponse response
WebSocket response data. -
timestamp
java.lang.Number timestamp
Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.WebSocketRequest extends BaseType<Network.WebSocketRequest> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
headers
JsonValue headers
HTTP request headers.
-
-
Class Torello.Browser.BrowserAPI.Network.WebSocketResponse extends BaseType<Network.WebSocketResponse> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
headers
JsonValue headers
HTTP response headers. -
headersText
java.lang.String headersText
HTTP response headers text.
OPTIONAL -
requestHeaders
JsonValue requestHeaders
HTTP request headers.
OPTIONAL -
requestHeadersText
java.lang.String requestHeadersText
HTTP request headers text.
OPTIONAL -
status
int status
HTTP response status code. -
statusText
java.lang.String statusText
HTTP response status text.
-
-
Class Torello.Browser.BrowserAPI.Network.webSocketWillSendHandshakeRequest extends BrowserEvent<Network.webSocketWillSendHandshakeRequest> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
request
Network.WebSocketRequest request
WebSocket request data. -
requestId
java.lang.String requestId
Request identifier. -
timestamp
java.lang.Number timestamp
Timestamp. -
wallTime
java.lang.Number wallTime
UTC Timestamp.
-
-
Class Torello.Browser.BrowserAPI.Network.webTransportClosed extends BrowserEvent<Network.webTransportClosed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
timestamp
java.lang.Number timestamp
Timestamp. -
transportId
java.lang.String transportId
WebTransport identifier.
-
-
Class Torello.Browser.BrowserAPI.Network.webTransportConnectionEstablished extends BrowserEvent<Network.webTransportConnectionEstablished> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
timestamp
java.lang.Number timestamp
Timestamp. -
transportId
java.lang.String transportId
WebTransport identifier.
-
-
Class Torello.Browser.BrowserAPI.Network.webTransportCreated extends BrowserEvent<Network.webTransportCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
initiator
Network.Initiator initiator
Request initiator.
OPTIONAL -
timestamp
java.lang.Number timestamp
Timestamp. -
transportId
java.lang.String transportId
WebTransport identifier. -
url
java.lang.String url
WebTransport request URL.
-
-
Class Torello.Browser.BrowserAPI.Overlay.BoxStyle extends BaseType<Overlay.BoxStyle> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.BrowserAPI.Overlay.ContainerQueryContainerHighlightConfig extends BaseType<Overlay.ContainerQueryContainerHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
containerBorder
Overlay.LineStyle containerBorder
The style of the container border.
OPTIONAL -
descendantBorder
Overlay.LineStyle descendantBorder
The style of the descendants' borders.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Overlay.ContainerQueryHighlightConfig extends BaseType<Overlay.ContainerQueryHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
containerQueryContainerHighlightConfig
Overlay.ContainerQueryContainerHighlightConfig containerQueryContainerHighlightConfig
A descriptor for the highlight appearance of container query containers. -
nodeId
int nodeId
Identifier of the container node to highlight.
-
-
Class Torello.Browser.BrowserAPI.Overlay.FlexContainerHighlightConfig extends BaseType<Overlay.FlexContainerHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnGapSpace
Overlay.BoxStyle columnGapSpace
Style of empty space caused by columns gaps (gap/column-gap).
OPTIONAL -
containerBorder
Overlay.LineStyle containerBorder
The style of the container border
OPTIONAL -
crossAlignment
Overlay.LineStyle crossAlignment
Style of the self-alignment line (align-items).
OPTIONAL -
crossDistributedSpace
Overlay.BoxStyle crossDistributedSpace
Style of content-distribution space on the cross axis (align-content).
OPTIONAL -
itemSeparator
Overlay.LineStyle itemSeparator
The style of the separator between items
OPTIONAL -
lineSeparator
Overlay.LineStyle lineSeparator
The style of the separator between lines
OPTIONAL -
mainDistributedSpace
Overlay.BoxStyle mainDistributedSpace
Style of content-distribution space on the main axis (justify-content).
OPTIONAL -
rowGapSpace
Overlay.BoxStyle rowGapSpace
Style of empty space caused by row gaps (gap/row-gap).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Overlay.FlexItemHighlightConfig extends BaseType<Overlay.FlexItemHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
baseSizeBorder
Overlay.LineStyle baseSizeBorder
Style of the border around the box representing the item's base size
OPTIONAL -
baseSizeBox
Overlay.BoxStyle baseSizeBox
Style of the box representing the item's base size
OPTIONAL -
flexibilityArrow
Overlay.LineStyle flexibilityArrow
Style of the arrow representing if the item grew or shrank
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Overlay.FlexNodeHighlightConfig extends BaseType<Overlay.FlexNodeHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
flexContainerHighlightConfig
Overlay.FlexContainerHighlightConfig flexContainerHighlightConfig
A descriptor for the highlight appearance of flex containers. -
nodeId
int nodeId
Identifier of the node to highlight.
-
-
Class Torello.Browser.BrowserAPI.Overlay.GridHighlightConfig extends BaseType<Overlay.GridHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
areaBorderColor
DOM.RGBA areaBorderColor
The named grid areas border color (Default: transparent).
OPTIONAL -
cellBorderColor
DOM.RGBA cellBorderColor
The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead.
OPTIONALDEPRECATED -
cellBorderDash
java.lang.Boolean cellBorderDash
Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead.
OPTIONALDEPRECATED -
columnGapColor
DOM.RGBA columnGapColor
The column gap highlight fill color (default: transparent).
OPTIONAL -
columnHatchColor
DOM.RGBA columnHatchColor
The column gap hatching fill color (default: transparent).
OPTIONAL -
columnLineColor
DOM.RGBA columnLineColor
The column line color (default: transparent).
OPTIONAL -
columnLineDash
java.lang.Boolean columnLineDash
Whether column lines are dashed (default: false).
OPTIONAL -
gridBackgroundColor
DOM.RGBA gridBackgroundColor
The grid container background color (Default: transparent).
OPTIONAL -
gridBorderColor
DOM.RGBA gridBorderColor
The grid container border highlight color (default: transparent).
OPTIONAL -
gridBorderDash
java.lang.Boolean gridBorderDash
Whether the grid border is dashed (default: false).
OPTIONAL -
rowGapColor
DOM.RGBA rowGapColor
The row gap highlight fill color (default: transparent).
OPTIONAL -
rowHatchColor
DOM.RGBA rowHatchColor
The row gap hatching fill color (default: transparent).
OPTIONAL -
rowLineColor
DOM.RGBA rowLineColor
The row line color (default: transparent).
OPTIONAL -
rowLineDash
java.lang.Boolean rowLineDash
Whether row lines are dashed (default: false).
OPTIONAL -
showAreaNames
java.lang.Boolean showAreaNames
Show area name labels (default: false).
OPTIONAL -
showGridExtensionLines
java.lang.Boolean showGridExtensionLines
Whether the extension lines from grid cells to the rulers should be shown (default: false).
OPTIONAL -
showLineNames
java.lang.Boolean showLineNames
Show line name labels (default: false).
OPTIONAL -
showNegativeLineNumbers
java.lang.Boolean showNegativeLineNumbers
Show Negative line number labels (default: false).
OPTIONAL -
showPositiveLineNumbers
java.lang.Boolean showPositiveLineNumbers
Show Positive line number labels (default: false).
OPTIONAL -
showTrackSizes
java.lang.Boolean showTrackSizes
Show track size labels (default: false).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Overlay.GridNodeHighlightConfig extends BaseType<Overlay.GridNodeHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
gridHighlightConfig
Overlay.GridHighlightConfig gridHighlightConfig
A descriptor for the highlight appearance. -
nodeId
int nodeId
Identifier of the node to highlight.
-
-
Class Torello.Browser.BrowserAPI.Overlay.HighlightConfig extends BaseType<Overlay.HighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
borderColor
DOM.RGBA borderColor
The border highlight fill color (default: transparent).
OPTIONAL -
colorFormat
java.lang.String colorFormat
The color format used to format color styles (default: hex).
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
containerQueryContainerHighlightConfig
Overlay.ContainerQueryContainerHighlightConfig containerQueryContainerHighlightConfig
The container query container highlight configuration (default: all transparent).
OPTIONAL -
contentColor
DOM.RGBA contentColor
The content box highlight fill color (default: transparent).
OPTIONAL -
contrastAlgorithm
java.lang.String contrastAlgorithm
The contrast algorithm to use for the contrast ratio (default: aa).
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
cssGridColor
DOM.RGBA cssGridColor
The grid layout color (default: transparent).
OPTIONAL -
eventTargetColor
DOM.RGBA eventTargetColor
The event target element highlight fill color (default: transparent).
OPTIONAL -
flexContainerHighlightConfig
Overlay.FlexContainerHighlightConfig flexContainerHighlightConfig
The flex container highlight configuration (default: all transparent).
OPTIONAL -
flexItemHighlightConfig
Overlay.FlexItemHighlightConfig flexItemHighlightConfig
The flex item highlight configuration (default: all transparent).
OPTIONAL -
gridHighlightConfig
Overlay.GridHighlightConfig gridHighlightConfig
The grid layout highlight configuration (default: all transparent).
OPTIONAL -
marginColor
DOM.RGBA marginColor
The margin highlight fill color (default: transparent).
OPTIONAL -
paddingColor
DOM.RGBA paddingColor
The padding highlight fill color (default: transparent).
OPTIONAL -
shapeColor
DOM.RGBA shapeColor
The shape outside fill color (default: transparent).
OPTIONAL -
shapeMarginColor
DOM.RGBA shapeMarginColor
The shape margin fill color (default: transparent).
OPTIONAL -
showAccessibilityInfo
java.lang.Boolean showAccessibilityInfo
Whether the a11y info should be shown (default: true).
OPTIONAL -
showExtensionLines
java.lang.Boolean showExtensionLines
Whether the extension lines from node to the rulers should be shown (default: false).
OPTIONAL -
showInfo
java.lang.Boolean showInfo
Whether the node info tooltip should be shown (default: false).
OPTIONAL -
showRulers
java.lang.Boolean showRulers
Whether the rulers should be shown (default: false).
OPTIONAL -
showStyles
java.lang.Boolean showStyles
Whether the node styles in the tooltip (default: false).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Overlay.HingeConfig extends BaseType<Overlay.HingeConfig> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.BrowserAPI.Overlay.inspectNodeRequested extends BrowserEvent<Overlay.inspectNodeRequested> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
int backendNodeId
Id of the node to inspect.
-
-
Class Torello.Browser.BrowserAPI.Overlay.IsolatedElementHighlightConfig extends BaseType<Overlay.IsolatedElementHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isolationModeHighlightConfig
Overlay.IsolationModeHighlightConfig isolationModeHighlightConfig
A descriptor for the highlight appearance of an element in isolation mode. -
nodeId
int nodeId
Identifier of the isolated element to highlight.
-
-
Class Torello.Browser.BrowserAPI.Overlay.IsolationModeHighlightConfig extends BaseType<Overlay.IsolationModeHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
maskColor
DOM.RGBA maskColor
The fill color for the mask covering non-isolated elements (default: transparent).
OPTIONAL -
resizerColor
DOM.RGBA resizerColor
The fill color of the resizers (default: transparent).
OPTIONAL -
resizerHandleColor
DOM.RGBA resizerHandleColor
The fill color for resizer handles (default: transparent).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Overlay.LineStyle extends BaseType<Overlay.LineStyle> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
color
DOM.RGBA color
The color of the line (default: transparent)
OPTIONAL -
pattern
java.lang.String pattern
The line pattern (default: solid)
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Overlay.nodeHighlightRequested extends BrowserEvent<Overlay.nodeHighlightRequested> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeId
int nodeId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Overlay.screenshotRequested extends BrowserEvent<Overlay.screenshotRequested> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
viewport
Page.Viewport viewport
Viewport to capture, in device independent pixels (dip).
-
-
Class Torello.Browser.BrowserAPI.Overlay.ScrollSnapContainerHighlightConfig extends BaseType<Overlay.ScrollSnapContainerHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
scrollMarginColor
DOM.RGBA scrollMarginColor
The margin highlight fill color (default: transparent).
OPTIONAL -
scrollPaddingColor
DOM.RGBA scrollPaddingColor
The padding highlight fill color (default: transparent).
OPTIONAL -
snapAreaBorder
Overlay.LineStyle snapAreaBorder
The style of the snap area border (default: transparent)
OPTIONAL -
snapportBorder
Overlay.LineStyle snapportBorder
The style of the snapport border (default: transparent)
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Overlay.ScrollSnapHighlightConfig extends BaseType<Overlay.ScrollSnapHighlightConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeId
int nodeId
Identifier of the node to highlight. -
scrollSnapContainerHighlightConfig
Overlay.ScrollSnapContainerHighlightConfig scrollSnapContainerHighlightConfig
A descriptor for the highlight appearance of scroll snap containers.
-
-
Class Torello.Browser.BrowserAPI.Overlay.SourceOrderConfig extends BaseType<Overlay.SourceOrderConfig> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.BrowserAPI.Overlay.WindowControlsOverlayConfig extends BaseType<Overlay.WindowControlsOverlayConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
selectedPlatform
java.lang.String selectedPlatform
Selected platforms to show the overlay. -
showCSS
boolean showCSS
Whether the title bar CSS should be shown when emulating the Window Controls Overlay. -
themeColor
java.lang.String themeColor
The theme color defined in app manifest.
-
-
Class Torello.Browser.BrowserAPI.Page.AdFrameStatus extends BaseType<Page.AdFrameStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
adFrameType
java.lang.String adFrameType
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
explanations
java.lang.String[] explanations
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Page.AdScriptAncestry extends BaseType<Page.AdScriptAncestry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
ancestryChain
Page.AdScriptId[] ancestryChain
A chain ofAdScriptIds representing the ancestry of an ad script that led to the creation of a frame. The chain is ordered from the script itself (lower level) up to its root ancestor that was flagged by filterlist. -
rootScriptFilterlistRule
java.lang.String rootScriptFilterlistRule
The filterlist rule that caused the root (last) script inancestryChainto be ad-tagged. Only populated if the rule is available.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.AdScriptId extends BaseType<Page.AdScriptId> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
debuggerId
java.lang.String debuggerId
Id of scriptId's debugger. -
scriptId
java.lang.String scriptId
Script Id of the script which caused a script or frame to be labelled as an ad.
-
-
Class Torello.Browser.BrowserAPI.Page.AppManifestError extends BaseType<Page.AppManifestError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
column
int column
Error column. -
critical
int critical
If critical, this is a non-recoverable parse error. -
line
int line
Error line. -
message
java.lang.String message
Error message.
-
-
Class Torello.Browser.BrowserAPI.Page.AppManifestParsedProperties extends BaseType<Page.AppManifestParsedProperties> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
scope
java.lang.String scope
Computed scope value
-
-
Class Torello.Browser.BrowserAPI.Page.BackForwardCacheBlockingDetails extends BaseType<Page.BackForwardCacheBlockingDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
int columnNumber
Column number in the script (0-based). -
function
java.lang.String function
Function name where blockage happened. Optional because of anonymous functions and tests.
OPTIONAL -
lineNumber
int lineNumber
Line number in the script (0-based). -
url
java.lang.String url
Url of the file where blockage happened. Optional because of tests.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.BackForwardCacheNotRestoredExplanation extends BaseType<Page.BackForwardCacheNotRestoredExplanation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
context
java.lang.String context
Context associated with the reason. The meaning of this context is dependent on the reason: - EmbedderExtensionSentMessageToCachedFrame: the extension ID.
OPTIONAL -
details
Page.BackForwardCacheBlockingDetails[] details
[No Description Provided by Google]
OPTIONAL -
reason
java.lang.String reason
Not restored reason- See Also:
BaseType.enumStrList(String)
-
type
java.lang.String type
Type of the reason- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Page.BackForwardCacheNotRestoredExplanationTree extends BaseType<Page.BackForwardCacheNotRestoredExplanationTree> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
children
Page.BackForwardCacheNotRestoredExplanationTree[] children
Array of children frame -
explanations
Page.BackForwardCacheNotRestoredExplanation[] explanations
Not restored reasons of each frame -
url
java.lang.String url
URL of each frame
-
-
Class Torello.Browser.BrowserAPI.Page.backForwardCacheNotUsed extends BrowserEvent<Page.backForwardCacheNotUsed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
The frame id of the associated frame. -
loaderId
java.lang.String loaderId
The loader id for the associated navigation. -
notRestoredExplanations
Page.BackForwardCacheNotRestoredExplanation[] notRestoredExplanations
Array of reasons why the page could not be cached. This must not be empty. -
notRestoredExplanationsTree
Page.BackForwardCacheNotRestoredExplanationTree notRestoredExplanationsTree
Tree structure of reasons why the page could not be cached for each frame.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.CompilationCacheParams extends BaseType<Page.CompilationCacheParams> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
eager
java.lang.Boolean eager
A hint to the backend whether eager compilation is recommended. (the actual compilation mode used is upon backend discretion).
OPTIONAL -
url
java.lang.String url
The URL of the script to produce a compilation cache entry for.
-
-
Class Torello.Browser.BrowserAPI.Page.compilationCacheProduced extends BrowserEvent<Page.compilationCacheProduced> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
Base64-encoded data (Encoded as a base64 string when passed over JSON) -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.documentOpened extends BrowserEvent<Page.documentOpened> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frame
Page.Frame frame
Frame object.
-
-
Class Torello.Browser.BrowserAPI.Page.domContentEventFired extends BrowserEvent<Page.domContentEventFired> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.downloadProgress extends BrowserEvent<Page.downloadProgress> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
guid
java.lang.String guid
Global unique identifier of the download. -
receivedBytes
java.lang.Number receivedBytes
Total bytes received. -
state
java.lang.String state
Download status.- See Also:
BaseType.enumStrList(String)
-
totalBytes
java.lang.Number totalBytes
Total expected bytes to download.
-
-
Class Torello.Browser.BrowserAPI.Page.downloadWillBegin extends BrowserEvent<Page.downloadWillBegin> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that caused download to begin. -
guid
java.lang.String guid
Global unique identifier of the download. -
suggestedFilename
java.lang.String suggestedFilename
Suggested file name of the resource (the actual name of the file saved on disk may differ). -
url
java.lang.String url
URL of the resource being downloaded.
-
-
Class Torello.Browser.BrowserAPI.Page.fileChooserOpened extends BrowserEvent<Page.fileChooserOpened> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
java.lang.Integer backendNodeId
Input node id. Only present for file choosers opened via anelement.
OPTIONALEXPERIMENTAL -
frameId
java.lang.String frameId
Id of the frame containing input node.
EXPERIMENTAL -
mode
java.lang.String mode
Input mode.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Page.FileFilter extends BaseType<Page.FileFilter> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
accepts
java.lang.String[] accepts
[No Description Provided by Google]
OPTIONAL -
name
java.lang.String name
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.FileHandler extends BaseType<Page.FileHandler> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
accepts
Page.FileFilter[] accepts
Mimic a map, name is the key, accepts is the value.
OPTIONAL -
action
java.lang.String action
[No Description Provided by Google] -
icons
Page.ImageResource[] icons
[No Description Provided by Google]
OPTIONAL -
launchType
java.lang.String launchType
Won't repeat the enums, using string for easy comparison. Same as the other enums below. -
name
java.lang.String name
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.FontFamilies extends BaseType<Page.FontFamilies> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cursive
java.lang.String cursive
The cursive font-family.
OPTIONAL -
fantasy
java.lang.String fantasy
The fantasy font-family.
OPTIONAL -
fixed
java.lang.String fixed
The fixed font-family.
OPTIONAL -
math
java.lang.String math
The math font-family.
OPTIONAL -
sansSerif
java.lang.String sansSerif
The sansSerif font-family.
OPTIONAL -
serif
java.lang.String serif
The serif font-family.
OPTIONAL -
standard
java.lang.String standard
The standard font-family.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.FontSizes extends BaseType<Page.FontSizes> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fixed
java.lang.Integer fixed
Default fixed font size.
OPTIONAL -
standard
java.lang.Integer standard
Default standard font size.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.Frame extends BaseType<Page.Frame> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
adFrameStatus
Page.AdFrameStatus adFrameStatus
Indicates whether this frame was tagged as an ad and why.
OPTIONALEXPERIMENTAL -
crossOriginIsolatedContextType
java.lang.String crossOriginIsolatedContextType
Indicates whether this is a cross origin isolated context.
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
domainAndRegistry
java.lang.String domainAndRegistry
Frame document's registered domain, taking the public suffixes list into account. Extracted from the Frame's url. Example URLs: http://www.google.com/file.html -> "google.com" http://a.b.co.uk/file.html -> "b.co.uk"
EXPERIMENTAL -
gatedAPIFeatures
java.lang.String[] gatedAPIFeatures
Indicated which gated APIs / features are available.
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
id
java.lang.String id
Frame unique identifier. -
loaderId
java.lang.String loaderId
Identifier of the loader associated with this frame. -
mimeType
java.lang.String mimeType
Frame document's mimeType as determined by the browser. -
name
java.lang.String name
Frame's name as specified in the tag.
OPTIONAL -
parentId
java.lang.String parentId
Parent frame identifier.
OPTIONAL -
secureContextType
java.lang.String secureContextType
Indicates whether the main document is a secure context and explains why that is the case.
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
securityOrigin
java.lang.String securityOrigin
Frame document's security origin. -
securityOriginDetails
Page.SecurityOriginDetails securityOriginDetails
Additional details about the frame document's security origin.
OPTIONALEXPERIMENTAL -
unreachableUrl
java.lang.String unreachableUrl
If the frame failed to load, this contains the URL that could not be loaded. Note that unlike url above, this URL may contain a fragment.
OPTIONALEXPERIMENTAL -
url
java.lang.String url
Frame document's URL without fragment. -
urlFragment
java.lang.String urlFragment
Frame document's URL fragment including the '#'.
OPTIONALEXPERIMENTAL
-
-
Class Torello.Browser.BrowserAPI.Page.frameAttached extends BrowserEvent<Page.frameAttached> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that has been attached. -
parentFrameId
java.lang.String parentFrameId
Parent frame identifier. -
stack
RunTime.StackTrace stack
JavaScript stack trace of when frame was attached, only set if frame initiated from script.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.frameClearedScheduledNavigation extends BrowserEvent<Page.frameClearedScheduledNavigation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that has cleared its scheduled navigation.
-
-
Class Torello.Browser.BrowserAPI.Page.frameDetached extends BrowserEvent<Page.frameDetached> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that has been detached. -
reason
java.lang.String reason
[No Description Provided by Google]
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Page.frameNavigated extends BrowserEvent<Page.frameNavigated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frame
Page.Frame frame
Frame object. -
type
java.lang.String type
[No Description Provided by Google]
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Page.frameRequestedNavigation extends BrowserEvent<Page.frameRequestedNavigation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
disposition
java.lang.String disposition
The disposition for the navigation.- See Also:
BaseType.enumStrList(String)
-
frameId
java.lang.String frameId
Id of the frame that is being navigated. -
reason
java.lang.String reason
The reason for the navigation.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
The destination URL for the requested navigation.
-
-
Class Torello.Browser.BrowserAPI.Page.FrameResource extends BaseType<Page.FrameResource> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
canceled
java.lang.Boolean canceled
True if the resource was canceled during loading.
OPTIONAL -
contentSize
java.lang.Number contentSize
Resource content size.
OPTIONAL -
failed
java.lang.Boolean failed
True if the resource failed to load.
OPTIONAL -
lastModified
java.lang.Number lastModified
last-modified timestamp as reported by server.
OPTIONAL -
mimeType
java.lang.String mimeType
Resource mimeType as determined by the browser. -
type
java.lang.String type
Type of this resource.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
Resource URL.
-
-
Class Torello.Browser.BrowserAPI.Page.FrameResourceTree extends BaseType<Page.FrameResourceTree> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
childFrames
Page.FrameResourceTree[] childFrames
Child frames.
OPTIONAL -
frame
Page.Frame frame
Frame information for this tree item. -
resources
Page.FrameResource[] resources
Information about frame resources.
-
-
Class Torello.Browser.BrowserAPI.Page.frameScheduledNavigation extends BrowserEvent<Page.frameScheduledNavigation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
delay
java.lang.Number delay
Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start. -
frameId
java.lang.String frameId
Id of the frame that has scheduled a navigation. -
reason
java.lang.String reason
The reason for the navigation.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
The destination URL for the scheduled navigation.
-
-
Class Torello.Browser.BrowserAPI.Page.frameStartedLoading extends BrowserEvent<Page.frameStartedLoading> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that has started loading.
-
-
Class Torello.Browser.BrowserAPI.Page.frameStartedNavigating extends BrowserEvent<Page.frameStartedNavigating> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
ID of the frame that is being navigated. -
loaderId
java.lang.String loaderId
Loader identifier. Even though it is present in case of same-document navigation, the previously committed loaderId would not change unless the navigation changes from a same-document to a cross-document navigation. -
navigationType
java.lang.String navigationType
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
The URL the navigation started with. The final URL can be different.
-
-
Class Torello.Browser.BrowserAPI.Page.frameStoppedLoading extends BrowserEvent<Page.frameStoppedLoading> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that has stopped loading.
-
-
Class Torello.Browser.BrowserAPI.Page.frameSubtreeWillBeDetached extends BrowserEvent<Page.frameSubtreeWillBeDetached> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame that is the root of the subtree that will be detached.
-
-
Class Torello.Browser.BrowserAPI.Page.FrameTree extends BaseType<Page.FrameTree> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
childFrames
Page.FrameTree[] childFrames
Child frames.
OPTIONAL -
frame
Page.Frame frame
Frame information for this tree item.
-
-
Class Torello.Browser.BrowserAPI.Page.getAppId$$RET extends BaseType<Page.getAppId$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
appId
java.lang.String appId
App id, either from manifest's id attribute or computed from start_url
OPTIONAL -
recommendedId
java.lang.String recommendedId
Recommendation for manifest's id attribute to match current id computed from start_url
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.getAppManifest$$RET extends BaseType<Page.getAppManifest$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
Manifest content.
OPTIONAL -
errors
Page.AppManifestError[] errors
[No Description Provided by Google] -
manifest
Page.WebAppManifest manifest
[No Description Provided by Google]
EXPERIMENTAL -
parsed
Page.AppManifestParsedProperties parsed
Parsed manifest properties. Deprecated, use manifest instead.
OPTIONALEXPERIMENTALDEPRECATED -
url
java.lang.String url
Manifest location.
-
-
Class Torello.Browser.BrowserAPI.Page.getLayoutMetrics$$RET extends BaseType<Page.getLayoutMetrics$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contentSize
DOM.Rect contentSize
Deprecated size of scrollable area. Is in DP. UsecssContentSizeinstead.
DEPRECATED -
cssContentSize
DOM.Rect cssContentSize
Size of scrollable area in CSS pixels. -
cssLayoutViewport
Page.LayoutViewport cssLayoutViewport
Metrics relating to the layout viewport in CSS pixels. -
cssVisualViewport
Page.VisualViewport cssVisualViewport
Metrics relating to the visual viewport in CSS pixels. -
layoutViewport
Page.LayoutViewport layoutViewport
Deprecated metrics relating to the layout viewport. Is in device pixels. UsecssLayoutViewportinstead.
DEPRECATED -
visualViewport
Page.VisualViewport visualViewport
Deprecated metrics relating to the visual viewport. Is in device pixels. UsecssVisualViewportinstead.
DEPRECATED
-
-
Class Torello.Browser.BrowserAPI.Page.getNavigationHistory$$RET extends BaseType<Page.getNavigationHistory$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
currentIndex
int currentIndex
Index of the current navigation history entry. -
entries
Page.NavigationEntry[] entries
Array of navigation history entries.
-
-
Class Torello.Browser.BrowserAPI.Page.getResourceContent$$RET extends BaseType<Page.getResourceContent$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
base64Encoded
boolean base64Encoded
True, if content was served as base64. -
content
java.lang.String content
Resource content.
-
-
Class Torello.Browser.BrowserAPI.Page.ImageResource extends BaseType<Page.ImageResource> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
sizes
java.lang.String sizes
[No Description Provided by Google]
OPTIONAL -
type
java.lang.String type
[No Description Provided by Google]
OPTIONAL -
url
java.lang.String url
The src field in the definition, but changing to url in favor of consistency.
-
-
Class Torello.Browser.BrowserAPI.Page.InstallabilityError extends BaseType<Page.InstallabilityError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorArguments
Page.InstallabilityErrorArgument[] errorArguments
The list of error arguments (e.g. {name:'minimum-icon-size-in-pixels', value:'64'}). -
errorId
java.lang.String errorId
The error id (e.g. 'manifest-missing-suitable-icon').
-
-
Class Torello.Browser.BrowserAPI.Page.InstallabilityErrorArgument extends BaseType<Page.InstallabilityErrorArgument> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Argument name (e.g. name:'minimum-icon-size-in-pixels'). -
value
java.lang.String value
Argument value (e.g. value:'64').
-
-
Class Torello.Browser.BrowserAPI.Page.javascriptDialogClosed extends BrowserEvent<Page.javascriptDialogClosed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Frame id.
EXPERIMENTAL -
result
boolean result
Whether dialog was confirmed. -
userInput
java.lang.String userInput
User input in case of prompt.
-
-
Class Torello.Browser.BrowserAPI.Page.javascriptDialogOpening extends BrowserEvent<Page.javascriptDialogOpening> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
defaultPrompt
java.lang.String defaultPrompt
Default dialog prompt.
OPTIONAL -
frameId
java.lang.String frameId
Frame id.
EXPERIMENTAL -
hasBrowserHandler
boolean hasBrowserHandler
True iff browser is capable showing or acting on the given dialog. When browser has no dialog handler for given target, calling alert while Page domain is engaged will stall the page execution. Execution can be resumed via calling Page.handleJavaScriptDialog. -
message
java.lang.String message
Message that will be displayed by the dialog. -
type
java.lang.String type
Dialog type.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
Frame url.
-
-
Class Torello.Browser.BrowserAPI.Page.LaunchHandler extends BaseType<Page.LaunchHandler> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
clientMode
java.lang.String clientMode
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.LayoutViewport extends BaseType<Page.LayoutViewport> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
clientHeight
int clientHeight
Height (CSS pixels), excludes scrollbar if present. -
clientWidth
int clientWidth
Width (CSS pixels), excludes scrollbar if present. -
pageX
int pageX
Horizontal offset relative to the document (CSS pixels). -
pageY
int pageY
Vertical offset relative to the document (CSS pixels).
-
-
Class Torello.Browser.BrowserAPI.Page.lifecycleEvent extends BrowserEvent<Page.lifecycleEvent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame. -
loaderId
java.lang.String loaderId
Loader identifier. Empty string if the request is fetched from worker. -
name
java.lang.String name
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.loadEventFired extends BrowserEvent<Page.loadEventFired> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.navigate$$RET extends BaseType<Page.navigate$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorText
java.lang.String errorText
User friendly error message, present if and only if navigation has failed.
OPTIONAL -
frameId
java.lang.String frameId
Frame id that has navigated (or failed to navigate) -
isDownload
java.lang.Boolean isDownload
Whether the navigation resulted in a download.
OPTIONALEXPERIMENTAL -
loaderId
java.lang.String loaderId
Loader identifier. This is omitted in case of same-document navigation, as the previously committed loaderId would not change.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.navigatedWithinDocument extends BrowserEvent<Page.navigatedWithinDocument> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
frameId
java.lang.String frameId
Id of the frame. -
navigationType
java.lang.String navigationType
Navigation type- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
Frame's new url.
-
-
Class Torello.Browser.BrowserAPI.Page.NavigationEntry extends BaseType<Page.NavigationEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
int id
Unique id of the navigation history entry. -
title
java.lang.String title
Title of the navigation history entry. -
transitionType
java.lang.String transitionType
Transition type.- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
URL of the navigation history entry. -
userTypedURL
java.lang.String userTypedURL
URL that the user typed in the url bar.
-
-
Class Torello.Browser.BrowserAPI.Page.OriginTrial extends BaseType<Page.OriginTrial> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
status
java.lang.String status
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
tokensWithStatus
Page.OriginTrialTokenWithStatus[] tokensWithStatus
[No Description Provided by Google] -
trialName
java.lang.String trialName
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.OriginTrialToken extends BaseType<Page.OriginTrialToken> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
expiryTime
java.lang.Number expiryTime
[No Description Provided by Google] -
isThirdParty
boolean isThirdParty
[No Description Provided by Google] -
matchSubDomains
boolean matchSubDomains
[No Description Provided by Google] -
origin
java.lang.String origin
[No Description Provided by Google] -
trialName
java.lang.String trialName
[No Description Provided by Google] -
usageRestriction
java.lang.String usageRestriction
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Page.OriginTrialTokenWithStatus extends BaseType<Page.OriginTrialTokenWithStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
parsedToken
Page.OriginTrialToken parsedToken
parsedTokenis present only when the token is extractable and parsable.
OPTIONAL -
rawTokenText
java.lang.String rawTokenText
[No Description Provided by Google] -
status
java.lang.String status
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Page.PermissionsPolicyBlockLocator extends BaseType<Page.PermissionsPolicyBlockLocator> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
blockReason
java.lang.String blockReason
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
frameId
java.lang.String frameId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.PermissionsPolicyFeatureState extends BaseType<Page.PermissionsPolicyFeatureState> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
allowed
boolean allowed
[No Description Provided by Google] -
feature
java.lang.String feature
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
locator
Page.PermissionsPolicyBlockLocator locator
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.printToPDF$$RET extends BaseType<Page.printToPDF$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
Base64-encoded pdf data. Empty if |returnAsStream| is specified. (Encoded as a base64 string when passed over JSON) -
stream
java.lang.String stream
A handle of the stream that holds resulting PDF data.
OPTIONALEXPERIMENTAL
-
-
Class Torello.Browser.BrowserAPI.Page.ProtocolHandler extends BaseType<Page.ProtocolHandler> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
protocol
java.lang.String protocol
[No Description Provided by Google] -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.RelatedApplication extends BaseType<Page.RelatedApplication> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
[No Description Provided by Google]
OPTIONAL -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.ScopeExtension extends BaseType<Page.ScopeExtension> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hasOriginWildcard
boolean hasOriginWildcard
[No Description Provided by Google] -
origin
java.lang.String origin
Instead of using tuple, this field always returns the serialized string for easy understanding and comparison.
-
-
Class Torello.Browser.BrowserAPI.Page.screencastFrame extends BrowserEvent<Page.screencastFrame> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
Base64-encoded compressed image. (Encoded as a base64 string when passed over JSON) -
metadata
Page.ScreencastFrameMetadata metadata
Screencast frame metadata. -
sessionId
int sessionId
Frame number.
-
-
Class Torello.Browser.BrowserAPI.Page.ScreencastFrameMetadata extends BaseType<Page.ScreencastFrameMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
deviceHeight
java.lang.Number deviceHeight
Device screen height in DIP. -
deviceWidth
java.lang.Number deviceWidth
Device screen width in DIP. -
offsetTop
java.lang.Number offsetTop
Top offset in DIP. -
pageScaleFactor
java.lang.Number pageScaleFactor
Page scale factor. -
scrollOffsetX
java.lang.Number scrollOffsetX
Position of horizontal scroll in CSS pixels. -
scrollOffsetY
java.lang.Number scrollOffsetY
Position of vertical scroll in CSS pixels. -
timestamp
java.lang.Number timestamp
Frame swap timestamp.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.screencastVisibilityChanged extends BrowserEvent<Page.screencastVisibilityChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
visible
boolean visible
True if the page is visible.
-
-
Class Torello.Browser.BrowserAPI.Page.Screenshot extends BaseType<Page.Screenshot> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
formFactor
java.lang.String formFactor
[No Description Provided by Google] -
image
Page.ImageResource image
[No Description Provided by Google] -
label
java.lang.String label
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.ScriptFontFamilies extends BaseType<Page.ScriptFontFamilies> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fontFamilies
Page.FontFamilies fontFamilies
Generic font families collection for the script. -
script
java.lang.String script
Name of the script which these font families are defined for.
-
-
Class Torello.Browser.BrowserAPI.Page.SecurityOriginDetails extends BaseType<Page.SecurityOriginDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isLocalhost
boolean isLocalhost
Indicates whether the frame document's security origin is one of the local hostnames (e.g. "localhost") or IP addresses (IPv4 127.0.0.0/8 or IPv6 ::1).
-
-
Class Torello.Browser.BrowserAPI.Page.ShareTarget extends BaseType<Page.ShareTarget> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
action
java.lang.String action
[No Description Provided by Google] -
enctype
java.lang.String enctype
[No Description Provided by Google] -
files
Page.FileFilter[] files
[No Description Provided by Google]
OPTIONAL -
method
java.lang.String method
[No Description Provided by Google] -
text
java.lang.String text
[No Description Provided by Google]
OPTIONAL -
title
java.lang.String title
Embed the ShareTargetParams
OPTIONAL -
url
java.lang.String url
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.Shortcut extends BaseType<Page.Shortcut> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
[No Description Provided by Google] -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Page.Viewport extends BaseType<Page.Viewport> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
height
java.lang.Number height
Rectangle height in device independent pixels (dip). -
scale
java.lang.Number scale
Page scale factor. -
width
java.lang.Number width
Rectangle width in device independent pixels (dip). -
x
java.lang.Number x
X offset in device independent pixels (dip). -
y
java.lang.Number y
Y offset in device independent pixels (dip).
-
-
Class Torello.Browser.BrowserAPI.Page.VisualViewport extends BaseType<Page.VisualViewport> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
clientHeight
java.lang.Number clientHeight
Height (CSS pixels), excludes scrollbar if present. -
clientWidth
java.lang.Number clientWidth
Width (CSS pixels), excludes scrollbar if present. -
offsetX
java.lang.Number offsetX
Horizontal offset relative to the layout viewport (CSS pixels). -
offsetY
java.lang.Number offsetY
Vertical offset relative to the layout viewport (CSS pixels). -
pageX
java.lang.Number pageX
Horizontal offset relative to the document (CSS pixels). -
pageY
java.lang.Number pageY
Vertical offset relative to the document (CSS pixels). -
scale
java.lang.Number scale
Scale relative to the ideal viewport (size at width=device-width). -
zoom
java.lang.Number zoom
Page zoom factor (CSS to device independent pixels ratio).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.WebAppManifest extends BaseType<Page.WebAppManifest> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backgroundColor
java.lang.String backgroundColor
[No Description Provided by Google]
OPTIONAL -
description
java.lang.String description
The extra description provided by the manifest.
OPTIONAL -
dir
java.lang.String dir
[No Description Provided by Google]
OPTIONAL -
display
java.lang.String display
[No Description Provided by Google]
OPTIONAL -
displayOverrides
java.lang.String[] displayOverrides
The overrided display mode controlled by the user.
OPTIONAL -
fileHandlers
Page.FileHandler[] fileHandlers
The handlers to open files.
OPTIONAL -
icons
Page.ImageResource[] icons
[No Description Provided by Google]
OPTIONAL -
id
java.lang.String id
[No Description Provided by Google]
OPTIONAL -
lang
java.lang.String lang
[No Description Provided by Google]
OPTIONAL -
launchHandler
Page.LaunchHandler launchHandler
TODO(crbug.com/1231886): This field is non-standard and part of a Chrome experiment. See: https://github.com/WICG/web-app-launch/blob/main/launch_handler.md
OPTIONAL -
name
java.lang.String name
[No Description Provided by Google]
OPTIONAL -
orientation
java.lang.String orientation
[No Description Provided by Google]
OPTIONAL -
preferRelatedApplications
java.lang.Boolean preferRelatedApplications
[No Description Provided by Google]
OPTIONAL -
protocolHandlers
Page.ProtocolHandler[] protocolHandlers
The handlers to open protocols.
OPTIONAL -
relatedApplications
Page.RelatedApplication[] relatedApplications
[No Description Provided by Google]
OPTIONAL -
scope
java.lang.String scope
[No Description Provided by Google]
OPTIONAL -
scopeExtensions
Page.ScopeExtension[] scopeExtensions
Non-standard, see https://github.com/WICG/manifest-incubations/blob/gh-pages/scope_extensions-explainer.md
OPTIONAL -
screenshots
Page.Screenshot[] screenshots
The screenshots used by chromium.
OPTIONAL -
shareTarget
Page.ShareTarget shareTarget
[No Description Provided by Google]
OPTIONAL -
shortcuts
Page.Shortcut[] shortcuts
[No Description Provided by Google]
OPTIONAL -
shortName
java.lang.String shortName
[No Description Provided by Google]
OPTIONAL -
startUrl
java.lang.String startUrl
[No Description Provided by Google]
OPTIONAL -
themeColor
java.lang.String themeColor
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Page.windowOpen extends BrowserEvent<Page.windowOpen> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
url
java.lang.String url
The URL for the new window. -
userGesture
boolean userGesture
Whether or not it was triggered by user gesture. -
windowFeatures
java.lang.String[] windowFeatures
An array of enabled window features. -
windowName
java.lang.String windowName
Window name.
-
-
Class Torello.Browser.BrowserAPI.Performance.Metric extends BaseType<Performance.Metric> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Metric name. -
value
java.lang.Number value
Metric value.
-
-
Class Torello.Browser.BrowserAPI.Performance.metrics extends BrowserEvent<Performance.metrics> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
metrics
Performance.Metric[] metrics
Current values of the metrics. -
title
java.lang.String title
Timestamp title.
-
-
Class Torello.Browser.BrowserAPI.PerformanceTimeline.LargestContentfulPaint extends BaseType<PerformanceTimeline.LargestContentfulPaint> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
elementId
java.lang.String elementId
The id attribute of the element, if available.
OPTIONAL -
loadTime
java.lang.Number loadTime
[No Description Provided by Google] -
nodeId
java.lang.Integer nodeId
[No Description Provided by Google]
OPTIONAL -
renderTime
java.lang.Number renderTime
[No Description Provided by Google] -
size
java.lang.Number size
The number of pixels being painted. -
url
java.lang.String url
The URL of the image (may be trimmed).
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.PerformanceTimeline.LayoutShift extends BaseType<PerformanceTimeline.LayoutShift> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hadRecentInput
boolean hadRecentInput
[No Description Provided by Google] -
lastInputTime
java.lang.Number lastInputTime
[No Description Provided by Google] -
sources
PerformanceTimeline.LayoutShiftAttribution[] sources
[No Description Provided by Google] -
value
java.lang.Number value
Score increment produced by this event.
-
-
Class Torello.Browser.BrowserAPI.PerformanceTimeline.LayoutShiftAttribution extends BaseType<PerformanceTimeline.LayoutShiftAttribution> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.BrowserAPI.PerformanceTimeline.TimelineEvent extends BaseType<PerformanceTimeline.TimelineEvent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
duration
java.lang.Number duration
Event duration, if applicable.
OPTIONAL -
frameId
java.lang.String frameId
Identifies the frame that this event is related to. Empty for non-frame targets. -
layoutShiftDetails
PerformanceTimeline.LayoutShift layoutShiftDetails
[No Description Provided by Google]
OPTIONAL -
lcpDetails
PerformanceTimeline.LargestContentfulPaint lcpDetails
[No Description Provided by Google]
OPTIONAL -
name
java.lang.String name
Name may be empty depending on the type. -
time
java.lang.Number time
Time in seconds since Epoch, monotonically increasing within document lifetime. -
type
java.lang.String type
The event type, as specified in https://w3c.github.io/performance-timeline/#dom-performanceentry-entrytype This determines which of the optional "details" fields is present.
-
-
Class Torello.Browser.BrowserAPI.PerformanceTimeline.timelineEventAdded extends BrowserEvent<PerformanceTimeline.timelineEventAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
event
PerformanceTimeline.TimelineEvent event
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Preload.prefetchStatusUpdated extends BrowserEvent<Preload.prefetchStatusUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
initiatingFrameId
java.lang.String initiatingFrameId
The frame id of the frame initiating prefetch. -
key
Preload.PreloadingAttemptKey key
[No Description Provided by Google] -
pipelineId
java.lang.String pipelineId
[No Description Provided by Google] -
prefetchStatus
java.lang.String prefetchStatus
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
prefetchUrl
java.lang.String prefetchUrl
[No Description Provided by Google] -
requestId
java.lang.String requestId
[No Description Provided by Google] -
status
java.lang.String status
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Preload.preloadEnabledStateUpdated extends BrowserEvent<Preload.preloadEnabledStateUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
disabledByBatterySaver
boolean disabledByBatterySaver
[No Description Provided by Google] -
disabledByDataSaver
boolean disabledByDataSaver
[No Description Provided by Google] -
disabledByHoldbackPrefetchSpeculationRules
boolean disabledByHoldbackPrefetchSpeculationRules
[No Description Provided by Google] -
disabledByHoldbackPrerenderSpeculationRules
boolean disabledByHoldbackPrerenderSpeculationRules
[No Description Provided by Google] -
disabledByPreference
boolean disabledByPreference
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Preload.PreloadingAttemptKey extends BaseType<Preload.PreloadingAttemptKey> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
action
java.lang.String action
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
loaderId
java.lang.String loaderId
[No Description Provided by Google] -
targetHint
java.lang.String targetHint
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Preload.PreloadingAttemptSource extends BaseType<Preload.PreloadingAttemptSource> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
Preload.PreloadingAttemptKey key
[No Description Provided by Google] -
nodeIds
int[] nodeIds
[No Description Provided by Google] -
ruleSetIds
java.lang.String[] ruleSetIds
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Preload.preloadingAttemptSourcesUpdated extends BrowserEvent<Preload.preloadingAttemptSourcesUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
loaderId
java.lang.String loaderId
[No Description Provided by Google] -
preloadingAttemptSources
Preload.PreloadingAttemptSource[] preloadingAttemptSources
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Preload.PrerenderMismatchedHeaders extends BaseType<Preload.PrerenderMismatchedHeaders> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
activationValue
java.lang.String activationValue
[No Description Provided by Google]
OPTIONAL -
headerName
java.lang.String headerName
[No Description Provided by Google] -
initialValue
java.lang.String initialValue
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Preload.prerenderStatusUpdated extends BrowserEvent<Preload.prerenderStatusUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
disallowedMojoInterface
java.lang.String disallowedMojoInterface
This is used to give users more information about the name of Mojo interface that is incompatible with prerender and has caused the cancellation of the attempt.
OPTIONAL -
key
Preload.PreloadingAttemptKey key
[No Description Provided by Google] -
mismatchedHeaders
Preload.PrerenderMismatchedHeaders[] mismatchedHeaders
[No Description Provided by Google]
OPTIONAL -
pipelineId
java.lang.String pipelineId
[No Description Provided by Google] -
prerenderStatus
java.lang.String prerenderStatus
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
status
java.lang.String status
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Preload.RuleSet extends BaseType<Preload.RuleSet> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backendNodeId
java.lang.Integer backendNodeId
A speculation rule set is either added through an inlinetag or through an external resource via the 'Speculation-Rules' HTTP header. For the first case, we include the BackendNodeId of the relevant<script>tag. For the second case, we include the external URL where the rule set was loaded from, and also RequestId if Network domain is enabled. See also: - https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rules-script - https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rules-header<script>
OPTIONAL -
errorMessage
java.lang.String errorMessage
TODO(https://crbug.com/1425354): Replace this property with structured error.
OPTIONALDEPRECATED -
errorType
java.lang.String errorType
Error informationerrorMessageis null ifferrorTypeis null.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
id
java.lang.String id
[No Description Provided by Google] -
loaderId
java.lang.String loaderId
Identifies a document which the rule set is associated with. -
requestId
java.lang.String requestId
[No Description Provided by Google]
OPTIONAL -
sourceText
java.lang.String sourceText
Source text of JSON representing the rule set. If it comes fromtag, it is the textContent of the node. Note that it is a JSON for valid case. See also: - https://wicg.github.io/nav-speculation/speculation-rules.html - https://github.com/WICG/nav-speculation/blob/main/triggers.md<script> -
url
java.lang.String url
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Preload.ruleSetRemoved extends BrowserEvent<Preload.ruleSetRemoved> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Preload.ruleSetUpdated extends BrowserEvent<Preload.ruleSetUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
ruleSet
Preload.RuleSet ruleSet
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.PWA.FileHandler extends BaseType<PWA.FileHandler> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
accepts
PWA.FileHandlerAccept[] accepts
[No Description Provided by Google] -
action
java.lang.String action
[No Description Provided by Google] -
displayName
java.lang.String displayName
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.PWA.FileHandlerAccept extends BaseType<PWA.FileHandlerAccept> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fileExtensions
java.lang.String[] fileExtensions
[No Description Provided by Google] -
mediaType
java.lang.String mediaType
New name of the mimetype according to https://www.iana.org/assignments/media-types/media-types.xhtml
-
-
Class Torello.Browser.BrowserAPI.PWA.getOsAppState$$RET extends BaseType<PWA.getOsAppState$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
badgeCount
int badgeCount
[No Description Provided by Google] -
fileHandlers
PWA.FileHandler[] fileHandlers
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Security.certificateError extends BrowserEvent<Security.certificateError> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorType
java.lang.String errorType
The type of the error. -
eventId
int eventId
The ID of the event. -
requestURL
java.lang.String requestURL
The url that was requested.
-
-
Class Torello.Browser.BrowserAPI.Security.CertificateSecurityState extends BaseType<Security.CertificateSecurityState> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
certificate
java.lang.String[] certificate
Page certificate. -
certificateHasSha1Signature
boolean certificateHasSha1Signature
True if the certificate has a SHA1 signature in the chain. -
certificateHasWeakSignature
boolean certificateHasWeakSignature
True if the certificate uses a weak signature algorithm. -
certificateNetworkError
java.lang.String certificateNetworkError
The highest priority network error code, if the certificate has an error.
OPTIONAL -
cipher
java.lang.String cipher
Cipher name. -
issuer
java.lang.String issuer
Name of the issuing CA. -
keyExchange
java.lang.String keyExchange
Key Exchange used by the connection, or the empty string if not applicable. -
keyExchangeGroup
java.lang.String keyExchangeGroup
(EC)DH group used by the connection, if applicable.
OPTIONAL -
mac
java.lang.String mac
TLS MAC. Note that AEAD ciphers do not have separate MACs.
OPTIONAL -
modernSSL
boolean modernSSL
True if modern SSL -
obsoleteSslCipher
boolean obsoleteSslCipher
True if the connection is using an obsolete SSL cipher. -
obsoleteSslKeyExchange
boolean obsoleteSslKeyExchange
True if the connection is using an obsolete SSL key exchange. -
obsoleteSslProtocol
boolean obsoleteSslProtocol
True if the connection is using an obsolete SSL protocol. -
obsoleteSslSignature
boolean obsoleteSslSignature
True if the connection is using an obsolete SSL signature. -
protocol
java.lang.String protocol
Protocol name (e.g. "TLS 1.2" or "QUIC"). -
subjectName
java.lang.String subjectName
Certificate subject name. -
validFrom
java.lang.Number validFrom
Certificate valid from date. -
validTo
java.lang.Number validTo
Certificate valid to (expiration) date
-
-
Class Torello.Browser.BrowserAPI.Security.InsecureContentStatus extends BaseType<Security.InsecureContentStatus> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
containedMixedForm
boolean containedMixedForm
Always false. -
displayedContentWithCertErrors
boolean displayedContentWithCertErrors
Always false. -
displayedInsecureContentStyle
java.lang.String displayedInsecureContentStyle
Always set to unknown.- See Also:
BaseType.enumStrList(String)
-
displayedMixedContent
boolean displayedMixedContent
Always false. -
ranContentWithCertErrors
boolean ranContentWithCertErrors
Always false. -
ranInsecureContentStyle
java.lang.String ranInsecureContentStyle
Always set to unknown.- See Also:
BaseType.enumStrList(String)
-
ranMixedContent
boolean ranMixedContent
Always false.
-
-
Class Torello.Browser.BrowserAPI.Security.SafetyTipInfo extends BaseType<Security.SafetyTipInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
safetyTipStatus
java.lang.String safetyTipStatus
Describes whether the page triggers any safety tips or reputation warnings. Default is unknown.- See Also:
BaseType.enumStrList(String)
-
safeUrl
java.lang.String safeUrl
The URL the safety tip suggested ("Did you mean?"). Only filled in for lookalike matches.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Security.securityStateChanged extends BrowserEvent<Security.securityStateChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
explanations
Security.SecurityStateExplanation[] explanations
Previously a list of explanations for the security state. Now always empty.
DEPRECATED -
insecureContentStatus
Security.InsecureContentStatus insecureContentStatus
Information about insecure content on the page.
DEPRECATED -
schemeIsCryptographic
boolean schemeIsCryptographic
True if the page was loaded over cryptographic transport such as HTTPS.
DEPRECATED -
securityState
java.lang.String securityState
Security state.- See Also:
BaseType.enumStrList(String)
-
summary
java.lang.String summary
Overrides user-visible description of the state. Always omitted.
OPTIONALDEPRECATED
-
-
Class Torello.Browser.BrowserAPI.Security.SecurityStateExplanation extends BaseType<Security.SecurityStateExplanation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
certificate
java.lang.String[] certificate
Page certificate. -
description
java.lang.String description
Full text explanation of the factor. -
mixedContentType
java.lang.String mixedContentType
The type of mixed content described by the explanation.- See Also:
BaseType.enumStrList(String)
-
recommendations
java.lang.String[] recommendations
Recommendations to fix any issues.
OPTIONAL -
securityState
java.lang.String securityState
Security state representing the severity of the factor being explained.- See Also:
BaseType.enumStrList(String)
-
summary
java.lang.String summary
Short phrase describing the type of factor. -
title
java.lang.String title
Title describing the type of factor.
-
-
Class Torello.Browser.BrowserAPI.Security.VisibleSecurityState extends BaseType<Security.VisibleSecurityState> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
certificateSecurityState
Security.CertificateSecurityState certificateSecurityState
Security state details about the page certificate.
OPTIONAL -
safetyTipInfo
Security.SafetyTipInfo safetyTipInfo
The type of Safety Tip triggered on the page. Note that this field will be set even if the Safety Tip UI was not actually shown.
OPTIONAL -
securityState
java.lang.String securityState
The security level of the page.- See Also:
BaseType.enumStrList(String)
-
securityStateIssueIds
java.lang.String[] securityStateIssueIds
Array of security state issues ids.
-
-
Class Torello.Browser.BrowserAPI.Security.visibleSecurityStateChanged extends BrowserEvent<Security.visibleSecurityStateChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
visibleSecurityState
Security.VisibleSecurityState visibleSecurityState
Security state information about the page.
-
-
Class Torello.Browser.BrowserAPI.ServiceWorker.ServiceWorkerErrorMessage extends BaseType<ServiceWorker.ServiceWorkerErrorMessage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
int columnNumber
[No Description Provided by Google] -
errorMessage
java.lang.String errorMessage
[No Description Provided by Google] -
lineNumber
int lineNumber
[No Description Provided by Google] -
registrationId
java.lang.String registrationId
[No Description Provided by Google] -
sourceURL
java.lang.String sourceURL
[No Description Provided by Google] -
versionId
java.lang.String versionId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.ServiceWorker.ServiceWorkerRegistration extends BaseType<ServiceWorker.ServiceWorkerRegistration> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isDeleted
boolean isDeleted
[No Description Provided by Google] -
registrationId
java.lang.String registrationId
[No Description Provided by Google] -
scopeURL
java.lang.String scopeURL
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.ServiceWorker.ServiceWorkerVersion extends BaseType<ServiceWorker.ServiceWorkerVersion> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
controlledClients
java.lang.String[] controlledClients
[No Description Provided by Google]
OPTIONAL -
registrationId
java.lang.String registrationId
[No Description Provided by Google] -
routerRules
java.lang.String routerRules
[No Description Provided by Google]
OPTIONAL -
runningStatus
java.lang.String runningStatus
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
scriptLastModified
java.lang.Number scriptLastModified
The Last-Modified header value of the main script.
OPTIONAL -
scriptResponseTime
java.lang.Number scriptResponseTime
The time at which the response headers of the main script were received from the server. For cached script it is the last time the cache entry was validated.
OPTIONAL -
scriptURL
java.lang.String scriptURL
[No Description Provided by Google] -
status
java.lang.String status
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
targetId
java.lang.String targetId
[No Description Provided by Google]
OPTIONAL -
versionId
java.lang.String versionId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.ServiceWorker.workerErrorReported extends BrowserEvent<ServiceWorker.workerErrorReported> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorMessage
ServiceWorker.ServiceWorkerErrorMessage errorMessage
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.ServiceWorker.workerRegistrationUpdated extends BrowserEvent<ServiceWorker.workerRegistrationUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
registrations
ServiceWorker.ServiceWorkerRegistration[] registrations
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.ServiceWorker.workerVersionUpdated extends BrowserEvent<ServiceWorker.workerVersionUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
versions
ServiceWorker.ServiceWorkerVersion[] versions
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingAggregatableDebugReportingConfig extends BaseType<Storage.AttributionReportingAggregatableDebugReportingConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
aggregationCoordinatorOrigin
java.lang.String aggregationCoordinatorOrigin
[No Description Provided by Google]
OPTIONAL -
budget
java.lang.Number budget
number instead of integer because not all uint32 can be represented by int, only present for source registrations
OPTIONAL -
debugData
Storage.AttributionReportingAggregatableDebugReportingData[] debugData
[No Description Provided by Google] -
keyPiece
java.lang.String keyPiece
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingAggregatableDebugReportingData extends BaseType<Storage.AttributionReportingAggregatableDebugReportingData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
keyPiece
java.lang.String keyPiece
[No Description Provided by Google] -
types
java.lang.String[] types
[No Description Provided by Google] -
value
java.lang.Number value
number instead of integer because not all uint32 can be represented by int
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingAggregatableDedupKey extends BaseType<Storage.AttributionReportingAggregatableDedupKey> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dedupKey
java.lang.String dedupKey
[No Description Provided by Google]
OPTIONAL -
filters
Storage.AttributionReportingFilterPair filters
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingAggregatableTriggerData extends BaseType<Storage.AttributionReportingAggregatableTriggerData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
filters
Storage.AttributionReportingFilterPair filters
[No Description Provided by Google] -
keyPiece
java.lang.String keyPiece
[No Description Provided by Google] -
sourceKeys
java.lang.String[] sourceKeys
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingAggregatableValueDictEntry extends BaseType<Storage.AttributionReportingAggregatableValueDictEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
filteringId
java.lang.String filteringId
[No Description Provided by Google] -
key
java.lang.String key
[No Description Provided by Google] -
value
java.lang.Number value
number instead of integer because not all uint32 can be represented by int
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingAggregatableValueEntry extends BaseType<Storage.AttributionReportingAggregatableValueEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
filters
Storage.AttributionReportingFilterPair filters
[No Description Provided by Google] -
values
Storage.AttributionReportingAggregatableValueDictEntry[] values
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingAggregationKeysEntry extends BaseType<Storage.AttributionReportingAggregationKeysEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
java.lang.String key
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingEventReportWindows extends BaseType<Storage.AttributionReportingEventReportWindows> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
ends
int[] ends
duration in seconds -
start
int start
duration in seconds
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingEventTriggerData extends BaseType<Storage.AttributionReportingEventTriggerData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
data
java.lang.String data
[No Description Provided by Google] -
dedupKey
java.lang.String dedupKey
[No Description Provided by Google]
OPTIONAL -
filters
Storage.AttributionReportingFilterPair filters
[No Description Provided by Google] -
priority
java.lang.String priority
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingFilterConfig extends BaseType<Storage.AttributionReportingFilterConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
filterValues
Storage.AttributionReportingFilterDataEntry[] filterValues
[No Description Provided by Google] -
lookbackWindow
java.lang.Integer lookbackWindow
duration in seconds
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingFilterDataEntry extends BaseType<Storage.AttributionReportingFilterDataEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
java.lang.String key
[No Description Provided by Google] -
values
java.lang.String[] values
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingFilterPair extends BaseType<Storage.AttributionReportingFilterPair> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
filters
Storage.AttributionReportingFilterConfig[] filters
[No Description Provided by Google] -
notFilters
Storage.AttributionReportingFilterConfig[] notFilters
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingNamedBudgetCandidate extends BaseType<Storage.AttributionReportingNamedBudgetCandidate> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
filters
Storage.AttributionReportingFilterPair filters
[No Description Provided by Google] -
name
java.lang.String name
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingNamedBudgetDef extends BaseType<Storage.AttributionReportingNamedBudgetDef> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
budget
int budget
[No Description Provided by Google] -
name
java.lang.String name
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.attributionReportingReportSent extends BrowserEvent<Storage.attributionReportingReportSent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
body
JsonValue body
[No Description Provided by Google] -
httpStatusCode
java.lang.Integer httpStatusCode
[No Description Provided by Google]
OPTIONAL -
netError
java.lang.Integer netError
If result issent, populated with net/HTTP status.
OPTIONAL -
netErrorName
java.lang.String netErrorName
[No Description Provided by Google]
OPTIONAL -
result
java.lang.String result
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.attributionReportingSourceRegistered extends BrowserEvent<Storage.attributionReportingSourceRegistered> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
registration
Storage.AttributionReportingSourceRegistration registration
[No Description Provided by Google] -
result
java.lang.String result
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingSourceRegistration extends BaseType<Storage.AttributionReportingSourceRegistration> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
aggregatableDebugReportingConfig
Storage.AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
[No Description Provided by Google] -
aggregatableReportWindow
int aggregatableReportWindow
duration in seconds -
aggregationKeys
Storage.AttributionReportingAggregationKeysEntry[] aggregationKeys
[No Description Provided by Google] -
debugKey
java.lang.String debugKey
[No Description Provided by Google]
OPTIONAL -
debugReporting
boolean debugReporting
[No Description Provided by Google] -
destinationLimitPriority
java.lang.String destinationLimitPriority
[No Description Provided by Google] -
destinationSites
java.lang.String[] destinationSites
[No Description Provided by Google] -
eventId
java.lang.String eventId
[No Description Provided by Google] -
eventLevelEpsilon
java.lang.Number eventLevelEpsilon
[No Description Provided by Google] -
eventReportWindows
Storage.AttributionReportingEventReportWindows eventReportWindows
[No Description Provided by Google] -
expiry
int expiry
duration in seconds -
filterData
Storage.AttributionReportingFilterDataEntry[] filterData
[No Description Provided by Google] -
maxEventLevelReports
int maxEventLevelReports
[No Description Provided by Google] -
namedBudgets
Storage.AttributionReportingNamedBudgetDef[] namedBudgets
[No Description Provided by Google] -
priority
java.lang.String priority
[No Description Provided by Google] -
reportingOrigin
java.lang.String reportingOrigin
[No Description Provided by Google] -
scopesData
Storage.AttributionScopesData scopesData
[No Description Provided by Google]
OPTIONAL -
sourceOrigin
java.lang.String sourceOrigin
[No Description Provided by Google] -
time
java.lang.Number time
[No Description Provided by Google] -
triggerData
java.lang.Number[] triggerData
number instead of integer because not all uint32 can be represented by int -
triggerDataMatching
java.lang.String triggerDataMatching
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Storage.attributionReportingTriggerRegistered extends BrowserEvent<Storage.attributionReportingTriggerRegistered> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
aggregatable
java.lang.String aggregatable
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
eventLevel
java.lang.String eventLevel
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
registration
Storage.AttributionReportingTriggerRegistration registration
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionReportingTriggerRegistration extends BaseType<Storage.AttributionReportingTriggerRegistration> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
aggregatableDebugReportingConfig
Storage.AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
[No Description Provided by Google] -
aggregatableDedupKeys
Storage.AttributionReportingAggregatableDedupKey[] aggregatableDedupKeys
[No Description Provided by Google] -
aggregatableFilteringIdMaxBytes
int aggregatableFilteringIdMaxBytes
[No Description Provided by Google] -
aggregatableTriggerData
Storage.AttributionReportingAggregatableTriggerData[] aggregatableTriggerData
[No Description Provided by Google] -
aggregatableValues
Storage.AttributionReportingAggregatableValueEntry[] aggregatableValues
[No Description Provided by Google] -
aggregationCoordinatorOrigin
java.lang.String aggregationCoordinatorOrigin
[No Description Provided by Google]
OPTIONAL -
debugKey
java.lang.String debugKey
[No Description Provided by Google]
OPTIONAL -
debugReporting
boolean debugReporting
[No Description Provided by Google] -
eventTriggerData
Storage.AttributionReportingEventTriggerData[] eventTriggerData
[No Description Provided by Google] -
filters
Storage.AttributionReportingFilterPair filters
[No Description Provided by Google] -
namedBudgets
Storage.AttributionReportingNamedBudgetCandidate[] namedBudgets
[No Description Provided by Google] -
scopes
java.lang.String[] scopes
[No Description Provided by Google] -
sourceRegistrationTimeConfig
java.lang.String sourceRegistrationTimeConfig
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
triggerContextId
java.lang.String triggerContextId
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Storage.attributionReportingVerboseDebugReportSent extends BrowserEvent<Storage.attributionReportingVerboseDebugReportSent> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
body
JsonValue body
[No Description Provided by Google]
OPTIONAL -
httpStatusCode
java.lang.Integer httpStatusCode
[No Description Provided by Google]
OPTIONAL -
netError
java.lang.Integer netError
[No Description Provided by Google]
OPTIONAL -
netErrorName
java.lang.String netErrorName
[No Description Provided by Google]
OPTIONAL -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.AttributionScopesData extends BaseType<Storage.AttributionScopesData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
limit
java.lang.Number limit
number instead of integer because not all uint32 can be represented by int -
maxEventStates
java.lang.Number maxEventStates
[No Description Provided by Google] -
values
java.lang.String[] values
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.cacheStorageContentUpdated extends BrowserEvent<Storage.cacheStorageContentUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucketId
java.lang.String bucketId
Storage bucket to update. -
cacheName
java.lang.String cacheName
Name of cache in origin. -
origin
java.lang.String origin
Origin to update. -
storageKey
java.lang.String storageKey
Storage key to update.
-
-
Class Torello.Browser.BrowserAPI.Storage.cacheStorageListUpdated extends BrowserEvent<Storage.cacheStorageListUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucketId
java.lang.String bucketId
Storage bucket to update. -
origin
java.lang.String origin
Origin to update. -
storageKey
java.lang.String storageKey
Storage key to update.
-
-
Class Torello.Browser.BrowserAPI.Storage.getUsageAndQuota$$RET extends BaseType<Storage.getUsageAndQuota$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
overrideActive
boolean overrideActive
Whether or not the origin has an active storage quota override -
quota
java.lang.Number quota
Storage quota (bytes). -
usage
java.lang.Number usage
Storage usage (bytes). -
usageBreakdown
Storage.UsageForType[] usageBreakdown
Storage usage per type (bytes).
-
-
Class Torello.Browser.BrowserAPI.Storage.indexedDBContentUpdated extends BrowserEvent<Storage.indexedDBContentUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucketId
java.lang.String bucketId
Storage bucket to update. -
databaseName
java.lang.String databaseName
Database to update. -
objectStoreName
java.lang.String objectStoreName
ObjectStore to update. -
origin
java.lang.String origin
Origin to update. -
storageKey
java.lang.String storageKey
Storage key to update.
-
-
Class Torello.Browser.BrowserAPI.Storage.indexedDBListUpdated extends BrowserEvent<Storage.indexedDBListUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucketId
java.lang.String bucketId
Storage bucket to update. -
origin
java.lang.String origin
Origin to update. -
storageKey
java.lang.String storageKey
Storage key to update.
-
-
Class Torello.Browser.BrowserAPI.Storage.interestGroupAccessed extends BrowserEvent<Storage.interestGroupAccessed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
accessTime
java.lang.Number accessTime
[No Description Provided by Google] -
bid
java.lang.Number bid
For bid or somethingBid event, if done locally and not on a server.
OPTIONAL -
bidCurrency
java.lang.String bidCurrency
[No Description Provided by Google]
OPTIONAL -
componentSellerOrigin
java.lang.String componentSellerOrigin
For topLevelBid/topLevelAdditionalBid, and when appropriate, win and additionalBidWin
OPTIONAL -
name
java.lang.String name
[No Description Provided by Google] -
ownerOrigin
java.lang.String ownerOrigin
[No Description Provided by Google] -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
uniqueAuctionId
java.lang.String uniqueAuctionId
For non-global events --- links to interestGroupAuctionEvent
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Storage.interestGroupAuctionEventOccurred extends BrowserEvent<Storage.interestGroupAuctionEventOccurred> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
auctionConfig
JsonValue auctionConfig
Set for started and configResolved
OPTIONAL -
eventTime
java.lang.Number eventTime
[No Description Provided by Google] -
parentAuctionId
java.lang.String parentAuctionId
Set for child auctions.
OPTIONAL -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
uniqueAuctionId
java.lang.String uniqueAuctionId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.interestGroupAuctionNetworkRequestCreated extends BrowserEvent<Storage.interestGroupAuctionNetworkRequestCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
auctions
java.lang.String[] auctions
This is the set of the auctions using the worklet that issued this request. In the case of trusted signals, it's possible that only some of them actually care about the keys being queried. -
requestId
java.lang.String requestId
[No Description Provided by Google] -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Storage.RelatedWebsiteSet extends BaseType<Storage.RelatedWebsiteSet> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
associatedSites
java.lang.String[] associatedSites
The associated sites of this set, along with the ccTLDs if there is any. -
primarySites
java.lang.String[] primarySites
The primary site of this set, along with the ccTLDs if there is any. -
serviceSites
java.lang.String[] serviceSites
The service sites of this set, along with the ccTLDs if there is any.
-
-
Class Torello.Browser.BrowserAPI.Storage.sharedStorageAccessed extends BrowserEvent<Storage.sharedStorageAccessed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
accessTime
java.lang.Number accessTime
Time of the access. -
mainFrameId
java.lang.String mainFrameId
DevTools Frame Token for the primary frame tree's root. -
method
java.lang.String method
Enum value indicating the Shared Storage API method invoked.- See Also:
BaseType.enumStrList(String)
-
ownerOrigin
java.lang.String ownerOrigin
Serialization of the origin owning the Shared Storage data. -
ownerSite
java.lang.String ownerSite
Serialization of the site owning the Shared Storage data. -
params
Storage.SharedStorageAccessParams params
The sub-parameters wrapped byparamsare all optional and their presence/absence depends ontype. -
scope
java.lang.String scope
Enum value indicating the access scope.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.Storage.SharedStorageAccessParams extends BaseType<Storage.SharedStorageAccessParams> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
batchSize
java.lang.Integer batchSize
Number of modifier methods sent in batch. Present only for SharedStorageAccessMethod: batchUpdate.
OPTIONAL -
batchUpdateId
java.lang.String batchUpdateId
If the method has been called as part of a batchUpdate, then this number identifies the batch to which it belongs. Optionally present only for SharedStorageAccessMethods: batchUpdate (required), set, append, delete, and clear.
OPTIONAL -
dataOrigin
java.lang.String dataOrigin
String denoting "context-origin", "script-origin", or a custom origin to be used as the worklet's data origin. Present only for SharedStorageAccessMethod: createWorklet.
OPTIONAL -
ignoreIfPresent
java.lang.Boolean ignoreIfPresent
Whether or not to set an entry for a key if that key is already present. Present only for SharedStorageAccessMethod: set.
OPTIONAL -
keepAlive
java.lang.Boolean keepAlive
Whether or not to keep the worket alive for future run or selectURL calls. Present only for SharedStorageAccessMethods: run and selectURL.
OPTIONAL -
key
java.lang.String key
Key for a specific entry in an origin's shared storage. Present only for SharedStorageAccessMethods: set, append, delete, and get.
OPTIONAL -
operationId
java.lang.String operationId
ID of the operation call. Present only for SharedStorageAccessMethods: run and selectURL.
OPTIONAL -
operationName
java.lang.String operationName
Name of the registered operation to be run. Present only for SharedStorageAccessMethods: run and selectURL.
OPTIONAL -
privateAggregationConfig
Storage.SharedStoragePrivateAggregationConfig privateAggregationConfig
Configures the private aggregation options. Present only for SharedStorageAccessMethods: run and selectURL.
OPTIONAL -
scriptSourceUrl
java.lang.String scriptSourceUrl
Spec of the module script URL. Present only for SharedStorageAccessMethods: addModule and createWorklet.
OPTIONAL -
serializedData
java.lang.String serializedData
The operation's serialized data in bytes (converted to a string). Present only for SharedStorageAccessMethods: run and selectURL. TODO(crbug.com/401011862): Consider updating this parameter to binary.
OPTIONAL -
urlsWithMetadata
Storage.SharedStorageUrlWithMetadata[] urlsWithMetadata
Array of candidate URLs' specs, along with any associated metadata. Present only for SharedStorageAccessMethod: selectURL.
OPTIONAL -
urnUuid
java.lang.String urnUuid
Spec of the URN:UUID generated for a selectURL call. Present only for SharedStorageAccessMethod: selectURL.
OPTIONAL -
value
java.lang.String value
Value for a specific entry in an origin's shared storage. Present only for SharedStorageAccessMethods: set and append.
OPTIONAL -
withLock
java.lang.String withLock
Name of the lock to be acquired, if present. Optionally present only for SharedStorageAccessMethods: batchUpdate, set, append, delete, and clear.
OPTIONAL -
workletOrdinal
java.lang.Integer workletOrdinal
A number denoting the (0-based) order of the worklet's creation relative to all other shared storage worklets created by documents using the current storage partition. Present only for SharedStorageAccessMethods: addModule, createWorklet.
OPTIONAL -
workletTargetId
java.lang.String workletTargetId
Hex representation of the DevTools token used as the TargetID for the associated shared storage worklet. Present only for SharedStorageAccessMethods: addModule, createWorklet, run, selectURL, and any other SharedStorageAccessMethod when the SharedStorageAccessScope is sharedStorageWorklet.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Storage.SharedStorageEntry extends BaseType<Storage.SharedStorageEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
java.lang.String key
[No Description Provided by Google] -
value
java.lang.String value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.SharedStorageMetadata extends BaseType<Storage.SharedStorageMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bytesUsed
int bytesUsed
Total number of bytes stored as key-value pairs in origin's shared storage. -
creationTime
java.lang.Number creationTime
Time when the origin's shared storage was last created. -
length
int length
Number of key-value pairs stored in origin's shared storage. -
remainingBudget
java.lang.Number remainingBudget
Current amount of bits of entropy remaining in the navigation budget.
-
-
Class Torello.Browser.BrowserAPI.Storage.SharedStoragePrivateAggregationConfig extends BaseType<Storage.SharedStoragePrivateAggregationConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
aggregationCoordinatorOrigin
java.lang.String aggregationCoordinatorOrigin
The chosen aggregation service deployment.
OPTIONAL -
contextId
java.lang.String contextId
The context ID provided.
OPTIONAL -
filteringIdMaxBytes
int filteringIdMaxBytes
Configures the maximum size allowed for filtering IDs. -
maxContributions
java.lang.Integer maxContributions
The limit on the number of contributions in the final report.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Storage.SharedStorageReportingMetadata extends BaseType<Storage.SharedStorageReportingMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
eventType
java.lang.String eventType
[No Description Provided by Google] -
reportingUrl
java.lang.String reportingUrl
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.SharedStorageUrlWithMetadata extends BaseType<Storage.SharedStorageUrlWithMetadata> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
reportingMetadata
Storage.SharedStorageReportingMetadata[] reportingMetadata
Any associated reporting metadata. -
url
java.lang.String url
Spec of candidate URL.
-
-
Class Torello.Browser.BrowserAPI.Storage.sharedStorageWorkletOperationExecutionFinished extends BrowserEvent<Storage.sharedStorageWorkletOperationExecutionFinished> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
executionTime
int executionTime
Time, in microseconds, from start of shared storage JS API call until end of operation execution in the worklet. -
finishedTime
java.lang.Number finishedTime
Time that the operation finished. -
mainFrameId
java.lang.String mainFrameId
DevTools Frame Token for the primary frame tree's root. -
method
java.lang.String method
Enum value indicating the Shared Storage API method invoked.- See Also:
BaseType.enumStrList(String)
-
operationId
java.lang.String operationId
ID of the operation call. -
ownerOrigin
java.lang.String ownerOrigin
Serialization of the origin owning the Shared Storage data. -
workletTargetId
java.lang.String workletTargetId
Hex representation of the DevTools token used as the TargetID for the associated shared storage worklet.
-
-
Class Torello.Browser.BrowserAPI.Storage.StorageBucket extends BaseType<Storage.StorageBucket> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
If not specified, it is the default bucket of the storageKey.
OPTIONAL -
storageKey
java.lang.String storageKey
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.storageBucketCreatedOrUpdated extends BrowserEvent<Storage.storageBucketCreatedOrUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucketInfo
Storage.StorageBucketInfo bucketInfo
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.storageBucketDeleted extends BrowserEvent<Storage.storageBucketDeleted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucketId
java.lang.String bucketId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.StorageBucketInfo extends BaseType<Storage.StorageBucketInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bucket
Storage.StorageBucket bucket
[No Description Provided by Google] -
durability
java.lang.String durability
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
expiration
java.lang.Number expiration
[No Description Provided by Google] -
id
java.lang.String id
[No Description Provided by Google] -
persistent
boolean persistent
[No Description Provided by Google] -
quota
java.lang.Number quota
Storage quota (bytes).
-
-
Class Torello.Browser.BrowserAPI.Storage.TrustTokens extends BaseType<Storage.TrustTokens> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
count
java.lang.Number count
[No Description Provided by Google] -
issuerOrigin
java.lang.String issuerOrigin
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Storage.UsageForType extends BaseType<Storage.UsageForType> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
storageType
java.lang.String storageType
Name of storage type.- See Also:
BaseType.enumStrList(String)
-
usage
java.lang.Number usage
Storage usage (bytes).
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.getInfo$$RET extends BaseType<SystemInfo.getInfo$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
commandLine
java.lang.String commandLine
The command line string used to launch the browser. Will be the empty string if not supported. -
gpu
SystemInfo.GPUInfo gpu
Information about the GPUs on the system. -
modelName
java.lang.String modelName
A platform-dependent description of the model of the machine. On Mac OS, this is, for example, 'MacBookPro'. Will be the empty string if not supported. -
modelVersion
java.lang.String modelVersion
A platform-dependent description of the version of the machine. On Mac OS, this is, for example, '10.1'. Will be the empty string if not supported.
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.GPUDevice extends BaseType<SystemInfo.GPUDevice> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
deviceId
java.lang.Number deviceId
PCI ID of the GPU device, if available; 0 otherwise. -
deviceString
java.lang.String deviceString
String description of the GPU device, if the PCI ID is not available. -
driverVendor
java.lang.String driverVendor
String description of the GPU driver vendor. -
driverVersion
java.lang.String driverVersion
String description of the GPU driver version. -
revision
java.lang.Number revision
Revision of the GPU, only available on Windows.
OPTIONAL -
subSysId
java.lang.Number subSysId
Sub sys ID of the GPU, only available on Windows.
OPTIONAL -
vendorId
java.lang.Number vendorId
PCI ID of the GPU vendor, if available; 0 otherwise. -
vendorString
java.lang.String vendorString
String description of the GPU vendor, if the PCI ID is not available.
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.GPUInfo extends BaseType<SystemInfo.GPUInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
auxAttributes
JsonValue auxAttributes
An optional dictionary of additional GPU related attributes.
OPTIONAL -
devices
SystemInfo.GPUDevice[] devices
The graphics devices on the system. Element 0 is the primary GPU. -
driverBugWorkarounds
java.lang.String[] driverBugWorkarounds
An optional array of GPU driver bug workarounds. -
featureStatus
JsonValue featureStatus
An optional dictionary of graphics features and their status.
OPTIONAL -
imageDecoding
SystemInfo.ImageDecodeAcceleratorCapability[] imageDecoding
Supported accelerated image decoding capabilities. -
videoDecoding
SystemInfo.VideoDecodeAcceleratorCapability[] videoDecoding
Supported accelerated video decoding capabilities. -
videoEncoding
SystemInfo.VideoEncodeAcceleratorCapability[] videoEncoding
Supported accelerated video encoding capabilities.
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.ImageDecodeAcceleratorCapability extends BaseType<SystemInfo.ImageDecodeAcceleratorCapability> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
imageType
java.lang.String imageType
Image coded, e.g. Jpeg.- See Also:
BaseType.enumStrList(String)
-
maxDimensions
SystemInfo.Size maxDimensions
Maximum supported dimensions of the image in pixels. -
minDimensions
SystemInfo.Size minDimensions
Minimum supported dimensions of the image in pixels. -
subsamplings
java.lang.String[] subsamplings
Optional array of supported subsampling formats, e.g. 4:2:0, if known.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.ProcessInfo extends BaseType<SystemInfo.ProcessInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cpuTime
java.lang.Number cpuTime
Specifies cumulative CPU usage in seconds across all threads of the process since the process start. -
id
int id
Specifies process id. -
type
java.lang.String type
Specifies process type.
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.Size extends BaseType<SystemInfo.Size> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
height
int height
Height in pixels. -
width
int width
Width in pixels.
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.VideoDecodeAcceleratorCapability extends BaseType<SystemInfo.VideoDecodeAcceleratorCapability> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
maxResolution
SystemInfo.Size maxResolution
Maximum video dimensions in pixels supported for this |profile|. -
minResolution
SystemInfo.Size minResolution
Minimum video dimensions in pixels supported for this |profile|. -
profile
java.lang.String profile
Video codec profile that is supported, e.g. VP9 Profile 2.
-
-
Class Torello.Browser.BrowserAPI.SystemInfo.VideoEncodeAcceleratorCapability extends BaseType<SystemInfo.VideoEncodeAcceleratorCapability> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
maxFramerateDenominator
int maxFramerateDenominator
[No Description Provided by Google] -
maxFramerateNumerator
int maxFramerateNumerator
Maximum encoding framerate in frames per second supported for this |profile|, as fraction's numerator and denominator, e.g. 24/1 fps, 24000/1001 fps, etc. -
maxResolution
SystemInfo.Size maxResolution
Maximum video dimensions in pixels supported for this |profile|. -
profile
java.lang.String profile
Video codec profile that is supported, e.g H264 Main.
-
-
Class Torello.Browser.BrowserAPI.Target.attachedToTarget extends BrowserEvent<Target.attachedToTarget> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
sessionId
java.lang.String sessionId
Identifier assigned to the session used to send/receive messages. -
targetInfo
Target.TargetInfo targetInfo
[No Description Provided by Google] -
waitingForDebugger
boolean waitingForDebugger
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Target.detachedFromTarget extends BrowserEvent<Target.detachedFromTarget> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
sessionId
java.lang.String sessionId
Detached session identifier. -
targetId
java.lang.String targetId
Deprecated.
OPTIONALDEPRECATED
-
-
Class Torello.Browser.BrowserAPI.Target.FilterEntry extends BaseType<Target.FilterEntry> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exclude
java.lang.Boolean exclude
If set, causes exclusion of matching targets from the list.
OPTIONAL -
type
java.lang.String type
If not present, matches any type.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Target.receivedMessageFromTarget extends BrowserEvent<Target.receivedMessageFromTarget> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
message
java.lang.String message
[No Description Provided by Google] -
sessionId
java.lang.String sessionId
Identifier of a session which sends a message. -
targetId
java.lang.String targetId
Deprecated.
OPTIONALDEPRECATED
-
-
Class Torello.Browser.BrowserAPI.Target.RemoteLocation extends BaseType<Target.RemoteLocation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
host
java.lang.String host
[No Description Provided by Google] -
port
int port
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Target.targetCrashed extends BrowserEvent<Target.targetCrashed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorCode
int errorCode
Termination error code. -
status
java.lang.String status
Termination status type. -
targetId
java.lang.String targetId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Target.targetCreated extends BrowserEvent<Target.targetCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
targetInfo
Target.TargetInfo targetInfo
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Target.targetDestroyed extends BrowserEvent<Target.targetDestroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
targetId
java.lang.String targetId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Target.TargetInfo extends BaseType<Target.TargetInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
attached
boolean attached
Whether the target has an attached client. -
browserContextId
java.lang.String browserContextId
[No Description Provided by Google]
OPTIONALEXPERIMENTAL -
canAccessOpener
boolean canAccessOpener
Whether the target has access to the originating window.
EXPERIMENTAL -
openerFrameId
java.lang.String openerFrameId
Frame id of originating window (is only set if target has an opener).
OPTIONALEXPERIMENTAL -
openerId
java.lang.String openerId
Opener target Id
OPTIONAL -
subtype
java.lang.String subtype
Provides additional details for specific target types. For example, for the type of "page", this may be set to "prerender".
OPTIONALEXPERIMENTAL -
targetId
java.lang.String targetId
[No Description Provided by Google] -
title
java.lang.String title
[No Description Provided by Google] -
type
java.lang.String type
List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22 -
url
java.lang.String url
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Target.targetInfoChanged extends BrowserEvent<Target.targetInfoChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
targetInfo
Target.TargetInfo targetInfo
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Tethering.accepted extends BrowserEvent<Tethering.accepted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
connectionId
java.lang.String connectionId
Connection id to be used. -
port
int port
Port number that was successfully bound.
-
-
Class Torello.Browser.BrowserAPI.Tracing.bufferUsage extends BrowserEvent<Tracing.bufferUsage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
eventCount
java.lang.Number eventCount
An approximate number of events in the trace log.
OPTIONAL -
percentFull
java.lang.Number percentFull
A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.
OPTIONAL -
value
java.lang.Number value
A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.Tracing.dataCollected extends BrowserEvent<Tracing.dataCollected> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
value
JsonValue value
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.Tracing.requestMemoryDump$$RET extends BaseType<Tracing.requestMemoryDump$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dumpGuid
java.lang.String dumpGuid
GUID of the resulting global memory dump. -
success
boolean success
True iff the global memory dump succeeded.
-
-
Class Torello.Browser.BrowserAPI.Tracing.TraceConfig extends BaseType<Tracing.TraceConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
enableArgumentFilter
java.lang.Boolean enableArgumentFilter
Turns on argument filter.
OPTIONALEXPERIMENTAL -
enableSampling
java.lang.Boolean enableSampling
Turns on JavaScript stack sampling.
OPTIONALEXPERIMENTAL -
enableSystrace
java.lang.Boolean enableSystrace
Turns on system tracing.
OPTIONALEXPERIMENTAL -
excludedCategories
java.lang.String[] excludedCategories
Excluded category filters.
OPTIONAL -
includedCategories
java.lang.String[] includedCategories
Included category filters.
OPTIONAL -
memoryDumpConfig
JsonValue memoryDumpConfig
Configuration for memory dump triggers. Used only when "memory-infra" category is enabled.
OPTIONALEXPERIMENTAL -
recordMode
java.lang.String recordMode
Controls how the trace buffer stores data. The default isrecordUntilFull.
OPTIONALEXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
syntheticDelays
java.lang.String[] syntheticDelays
Configuration to synthesize the delays in tracing.
OPTIONALEXPERIMENTAL -
traceBufferSizeInKb
java.lang.Number traceBufferSizeInKb
Size of the trace buffer in kilobytes. If not specified or zero is passed, a default value of 200 MB would be used.
OPTIONALEXPERIMENTAL
-
-
Class Torello.Browser.BrowserAPI.Tracing.tracingComplete extends BrowserEvent<Tracing.tracingComplete> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dataLossOccurred
boolean dataLossOccurred
Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around. -
stream
java.lang.String stream
A handle of the stream that holds resulting trace data.
OPTIONAL -
streamCompression
java.lang.String streamCompression
Compression format of returned stream.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
traceFormat
java.lang.String traceFormat
Trace data format of returned stream.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.WebAudio.AudioListener extends BaseType<WebAudio.AudioListener> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
listenerId
java.lang.String listenerId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.audioListenerCreated extends BrowserEvent<WebAudio.audioListenerCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
listener
WebAudio.AudioListener listener
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.audioListenerWillBeDestroyed extends BrowserEvent<WebAudio.audioListenerWillBeDestroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
listenerId
java.lang.String listenerId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.AudioNode extends BaseType<WebAudio.AudioNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
channelCount
java.lang.Number channelCount
[No Description Provided by Google] -
channelCountMode
java.lang.String channelCountMode
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
channelInterpretation
java.lang.String channelInterpretation
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
nodeId
java.lang.String nodeId
[No Description Provided by Google] -
nodeType
java.lang.String nodeType
[No Description Provided by Google] -
numberOfInputs
java.lang.Number numberOfInputs
[No Description Provided by Google] -
numberOfOutputs
java.lang.Number numberOfOutputs
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.audioNodeCreated extends BrowserEvent<WebAudio.audioNodeCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
node
WebAudio.AudioNode node
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.audioNodeWillBeDestroyed extends BrowserEvent<WebAudio.audioNodeWillBeDestroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
nodeId
java.lang.String nodeId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.AudioParam extends BaseType<WebAudio.AudioParam> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
defaultValue
java.lang.Number defaultValue
[No Description Provided by Google] -
maxValue
java.lang.Number maxValue
[No Description Provided by Google] -
minValue
java.lang.Number minValue
[No Description Provided by Google] -
nodeId
java.lang.String nodeId
[No Description Provided by Google] -
paramId
java.lang.String paramId
[No Description Provided by Google] -
paramType
java.lang.String paramType
[No Description Provided by Google] -
rate
java.lang.String rate
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.BrowserAPI.WebAudio.audioParamCreated extends BrowserEvent<WebAudio.audioParamCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
param
WebAudio.AudioParam param
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.audioParamWillBeDestroyed extends BrowserEvent<WebAudio.audioParamWillBeDestroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
nodeId
java.lang.String nodeId
[No Description Provided by Google] -
paramId
java.lang.String paramId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.BaseAudioContext extends BaseType<WebAudio.BaseAudioContext> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
callbackBufferSize
java.lang.Number callbackBufferSize
Platform-dependent callback buffer size. -
contextId
java.lang.String contextId
[No Description Provided by Google] -
contextState
java.lang.String contextState
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
contextType
java.lang.String contextType
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
maxOutputChannelCount
java.lang.Number maxOutputChannelCount
Number of output channels supported by audio hardware in use. -
realtimeData
WebAudio.ContextRealtimeData realtimeData
[No Description Provided by Google]
OPTIONAL -
sampleRate
java.lang.Number sampleRate
Context sample rate.
-
-
Class Torello.Browser.BrowserAPI.WebAudio.contextChanged extends BrowserEvent<WebAudio.contextChanged> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
context
WebAudio.BaseAudioContext context
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.contextCreated extends BrowserEvent<WebAudio.contextCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
context
WebAudio.BaseAudioContext context
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.ContextRealtimeData extends BaseType<WebAudio.ContextRealtimeData> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
callbackIntervalMean
java.lang.Number callbackIntervalMean
A running mean of callback interval. -
callbackIntervalVariance
java.lang.Number callbackIntervalVariance
A running variance of callback interval. -
currentTime
java.lang.Number currentTime
The current context time in second in BaseAudioContext. -
renderCapacity
java.lang.Number renderCapacity
The time spent on rendering graph divided by render quantum duration, and multiplied by 100. 100 means the audio renderer reached the full capacity and glitch may occur.
-
-
Class Torello.Browser.BrowserAPI.WebAudio.contextWillBeDestroyed extends BrowserEvent<WebAudio.contextWillBeDestroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAudio.nodeParamConnected extends BrowserEvent<WebAudio.nodeParamConnected> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
destinationId
java.lang.String destinationId
[No Description Provided by Google] -
sourceId
java.lang.String sourceId
[No Description Provided by Google] -
sourceOutputIndex
java.lang.Number sourceOutputIndex
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.WebAudio.nodeParamDisconnected extends BrowserEvent<WebAudio.nodeParamDisconnected> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
destinationId
java.lang.String destinationId
[No Description Provided by Google] -
sourceId
java.lang.String sourceId
[No Description Provided by Google] -
sourceOutputIndex
java.lang.Number sourceOutputIndex
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.WebAudio.nodesConnected extends BrowserEvent<WebAudio.nodesConnected> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
destinationId
java.lang.String destinationId
[No Description Provided by Google] -
destinationInputIndex
java.lang.Number destinationInputIndex
[No Description Provided by Google]
OPTIONAL -
sourceId
java.lang.String sourceId
[No Description Provided by Google] -
sourceOutputIndex
java.lang.Number sourceOutputIndex
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.WebAudio.nodesDisconnected extends BrowserEvent<WebAudio.nodesDisconnected> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextId
java.lang.String contextId
[No Description Provided by Google] -
destinationId
java.lang.String destinationId
[No Description Provided by Google] -
destinationInputIndex
java.lang.Number destinationInputIndex
[No Description Provided by Google]
OPTIONAL -
sourceId
java.lang.String sourceId
[No Description Provided by Google] -
sourceOutputIndex
java.lang.Number sourceOutputIndex
[No Description Provided by Google]
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.WebAuthn.Credential extends BaseType<WebAuthn.Credential> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backupEligibility
java.lang.Boolean backupEligibility
Assertions returned by this credential will have the backup eligibility (BE) flag set to this value. Defaults to the authenticator's defaultBackupEligibility value.
OPTIONAL -
backupState
java.lang.Boolean backupState
Assertions returned by this credential will have the backup state (BS) flag set to this value. Defaults to the authenticator's defaultBackupState value.
OPTIONAL -
credentialId
java.lang.String credentialId
[No Description Provided by Google] -
isResidentCredential
boolean isResidentCredential
[No Description Provided by Google] -
largeBlob
java.lang.String largeBlob
The large blob associated with the credential. See https://w3c.github.io/webauthn/#sctn-large-blob-extension (Encoded as a base64 string when passed over JSON)
OPTIONAL -
privateKey
java.lang.String privateKey
The ECDSA P-256 private key in PKCS#8 format. (Encoded as a base64 string when passed over JSON) -
rpId
java.lang.String rpId
Relying Party ID the credential is scoped to. Must be set when adding a credential.
OPTIONAL -
signCount
int signCount
Signature counter. This is incremented by one for each successful assertion. See https://w3c.github.io/webauthn/#signature-counter -
userDisplayName
java.lang.String userDisplayName
The credential's user.displayName property. Equivalent to empty if not set. https://w3c.github.io/webauthn/#dom-publickeycredentialuserentity-displayname
OPTIONAL -
userHandle
java.lang.String userHandle
An opaque byte sequence with a maximum size of 64 bytes mapping the credential to a specific user. (Encoded as a base64 string when passed over JSON)
OPTIONAL -
userName
java.lang.String userName
The credential's user.name property. Equivalent to empty if not set. https://w3c.github.io/webauthn/#dom-publickeycredentialentity-name
OPTIONAL
-
-
Class Torello.Browser.BrowserAPI.WebAuthn.credentialAdded extends BrowserEvent<WebAuthn.credentialAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
authenticatorId
java.lang.String authenticatorId
[No Description Provided by Google] -
credential
WebAuthn.Credential credential
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAuthn.credentialAsserted extends BrowserEvent<WebAuthn.credentialAsserted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
authenticatorId
java.lang.String authenticatorId
[No Description Provided by Google] -
credential
WebAuthn.Credential credential
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAuthn.credentialDeleted extends BrowserEvent<WebAuthn.credentialDeleted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
authenticatorId
java.lang.String authenticatorId
[No Description Provided by Google] -
credentialId
java.lang.String credentialId
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAuthn.credentialUpdated extends BrowserEvent<WebAuthn.credentialUpdated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
authenticatorId
java.lang.String authenticatorId
[No Description Provided by Google] -
credential
WebAuthn.Credential credential
[No Description Provided by Google]
-
-
Class Torello.Browser.BrowserAPI.WebAuthn.VirtualAuthenticatorOptions extends BaseType<WebAuthn.VirtualAuthenticatorOptions> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
automaticPresenceSimulation
java.lang.Boolean automaticPresenceSimulation
If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.
OPTIONAL -
ctap2Version
java.lang.String ctap2Version
Defaults to ctap2_0. Ignored if |protocol| == u2f.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
defaultBackupEligibility
java.lang.Boolean defaultBackupEligibility
Credentials created by this authenticator will have the backup eligibility (BE) flag set to this value. Defaults to false. https://w3c.github.io/webauthn/#sctn-credential-backup
OPTIONAL -
defaultBackupState
java.lang.Boolean defaultBackupState
Credentials created by this authenticator will have the backup state (BS) flag set to this value. Defaults to false. https://w3c.github.io/webauthn/#sctn-credential-backup
OPTIONAL -
hasCredBlob
java.lang.Boolean hasCredBlob
If set to true, the authenticator will support the credBlob extension. https://fidoalliance.org/specs/fido-v2.1-rd-20201208/fido-client-to-authenticator-protocol-v2.1-rd-20201208.html#sctn-credBlob-extension Defaults to false.
OPTIONAL -
hasLargeBlob
java.lang.Boolean hasLargeBlob
If set to true, the authenticator will support the largeBlob extension. https://w3c.github.io/webauthn#largeBlob Defaults to false.
OPTIONAL -
hasMinPinLength
java.lang.Boolean hasMinPinLength
If set to true, the authenticator will support the minPinLength extension. https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension Defaults to false.
OPTIONAL -
hasPrf
java.lang.Boolean hasPrf
If set to true, the authenticator will support the prf extension. https://w3c.github.io/webauthn/#prf-extension Defaults to false.
OPTIONAL -
hasResidentKey
java.lang.Boolean hasResidentKey
Defaults to false.
OPTIONAL -
hasUserVerification
java.lang.Boolean hasUserVerification
Defaults to false.
OPTIONAL -
isUserVerified
java.lang.Boolean isUserVerified
Sets whether User Verification succeeds or fails for an authenticator. Defaults to false.
OPTIONAL -
protocol
java.lang.String protocol
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
transport
java.lang.String transport
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
-
Package Torello.Browser.JavaScriptAPI
-
Class Torello.Browser.JavaScriptAPI.Console.ConsoleMessage extends BaseType<Console.ConsoleMessage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
column
java.lang.Integer column
Column number in the resource that generated this message (1-based).
OPTIONAL -
level
java.lang.String level
Message severity.- See Also:
BaseType.enumStrList(String)
-
line
java.lang.Integer line
Line number in the resource that generated this message (1-based).
OPTIONAL -
source
java.lang.String source
Message source.- See Also:
BaseType.enumStrList(String)
-
text
java.lang.String text
Message text. -
url
java.lang.String url
URL of the message origin.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.Console.messageAdded extends BrowserEvent<Console.messageAdded> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
message
Console.ConsoleMessage message
Console message that has been added.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.BreakLocation extends BaseType<Debugger.BreakLocation> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
java.lang.Integer columnNumber
Column number in the script (0-based).
OPTIONAL -
lineNumber
int lineNumber
Line number in the script (0-based). -
scriptId
java.lang.String scriptId
Script identifier as reported in theDebugger.scriptParsed. -
type
java.lang.String type
[No Description Provided by Google]
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.breakpointResolved extends BrowserEvent<Debugger.breakpointResolved> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
breakpointId
java.lang.String breakpointId
Breakpoint unique identifier. -
location
Debugger.Location location
Actual breakpoint location.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.CallFrame extends BaseType<Debugger.CallFrame> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_this
RunTime.RemoteObject _this
thisobject for this call frame. -
callFrameId
java.lang.String callFrameId
Call frame identifier. This identifier is only valid while the virtual machine is paused. -
canBeRestarted
java.lang.Boolean canBeRestarted
Valid only while the VM is paused and indicates whether this frame can be restarted or not. Note that atruevalue here does not guarantee that Debugger#restartFrame with this CallFrameId will be successful, but it is very likely.
OPTIONALEXPERIMENTAL -
functionLocation
Debugger.Location functionLocation
Location in the source code.
OPTIONAL -
functionName
java.lang.String functionName
Name of the JavaScript function called on this call frame. -
location
Debugger.Location location
Location in the source code. -
returnValue
RunTime.RemoteObject returnValue
The value being returned, if the function is at return point.
OPTIONAL -
scopeChain
Debugger.Scope[] scopeChain
Scope chain for this call frame. -
url
java.lang.String url
JavaScript script name or url. Deprecated in favor of using thelocation.scriptIdto resolve the URL via a previously sentDebugger.scriptParsedevent.
DEPRECATED
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.DebugSymbols extends BaseType<Debugger.DebugSymbols> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
externalURL
java.lang.String externalURL
URL of the external symbol source.
OPTIONAL -
type
java.lang.String type
Type of the debug symbols.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.disassembleWasmModule$$RET extends BaseType<Debugger.disassembleWasmModule$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
chunk
Debugger.WasmDisassemblyChunk chunk
The first chunk of disassembly. -
functionBodyOffsets
int[] functionBodyOffsets
The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all ends are exclusive. -
streamId
java.lang.String streamId
For large modules, return a stream from which additional chunks of disassembly can be read successively.
OPTIONAL -
totalNumberOfLines
int totalNumberOfLines
The total number of lines in the disassembly text.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.evaluateOnCallFrame$$RET extends BaseType<Debugger.evaluateOnCallFrame$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details.
OPTIONAL -
result
RunTime.RemoteObject result
Object wrapper for the evaluation result.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.getScriptSource$$RET extends BaseType<Debugger.getScriptSource$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bytecode
java.lang.String bytecode
Wasm bytecode. (Encoded as a base64 string when passed over JSON)
OPTIONAL -
scriptSource
java.lang.String scriptSource
Script source (empty in case of Wasm bytecode).
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.Location extends BaseType<Debugger.Location> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
java.lang.Integer columnNumber
Column number in the script (0-based).
OPTIONAL -
lineNumber
int lineNumber
Line number in the script (0-based). -
scriptId
java.lang.String scriptId
Script identifier as reported in theDebugger.scriptParsed.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.LocationRange extends BaseType<Debugger.LocationRange> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
end
Debugger.ScriptPosition end
[No Description Provided by Google] -
scriptId
java.lang.String scriptId
[No Description Provided by Google] -
start
Debugger.ScriptPosition start
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.paused extends BrowserEvent<Debugger.paused> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
asyncCallStackTraceId
RunTime.StackTraceId asyncCallStackTraceId
Never present, will be removed.
OPTIONALEXPERIMENTALDEPRECATED -
asyncStackTrace
RunTime.StackTrace asyncStackTrace
Async stack trace, if any.
OPTIONAL -
asyncStackTraceId
RunTime.StackTraceId asyncStackTraceId
Async stack trace, if any.
OPTIONALEXPERIMENTAL -
callFrames
Debugger.CallFrame[] callFrames
Call stack the virtual machine stopped on. -
data
JsonValue data
Object containing break-specific auxiliary properties.
OPTIONAL -
hitBreakpoints
java.lang.String[] hitBreakpoints
Hit breakpoints IDs
OPTIONAL -
reason
java.lang.String reason
Pause reason.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.ResolvedBreakpoint extends BaseType<Debugger.ResolvedBreakpoint> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
breakpointId
java.lang.String breakpointId
Breakpoint unique identifier. -
location
Debugger.Location location
Actual breakpoint location.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.restartFrame$$RET extends BaseType<Debugger.restartFrame$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
asyncStackTrace
RunTime.StackTrace asyncStackTrace
Async stack trace, if any.
OPTIONALDEPRECATED -
asyncStackTraceId
RunTime.StackTraceId asyncStackTraceId
Async stack trace, if any.
OPTIONALDEPRECATED -
callFrames
Debugger.CallFrame[] callFrames
New stack trace.
DEPRECATED
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.Scope extends BaseType<Debugger.Scope> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
endLocation
Debugger.Location endLocation
Location in the source code where scope ends
OPTIONAL -
name
java.lang.String name
[No Description Provided by Google]
OPTIONAL -
object
RunTime.RemoteObject object
Object representing the scope. Forglobalandwithscopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties. -
startLocation
Debugger.Location startLocation
Location in the source code where scope starts
OPTIONAL -
type
java.lang.String type
Scope type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.scriptFailedToParse extends BrowserEvent<Debugger.scriptFailedToParse> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
buildId
java.lang.String buildId
For Wasm modules, the content of thebuild_idcustom section. For JavaScript thedebugIdmagic comment. -
codeOffset
java.lang.Integer codeOffset
If the scriptLanguage is WebAssembly, the code section offset in the module.
OPTIONALEXPERIMENTAL -
embedderName
java.lang.String embedderName
The name the embedder supplied for this script.
OPTIONALEXPERIMENTAL -
endColumn
int endColumn
Length of the last line of the script. -
endLine
int endLine
Last line of the script. -
executionContextAuxData
JsonValue executionContextAuxData
Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
OPTIONAL -
executionContextId
int executionContextId
Specifies script creation context. -
hash
java.lang.String hash
Content hash of the script, SHA-256. -
hasSourceURL
java.lang.Boolean hasSourceURL
True, if this script has sourceURL.
OPTIONAL -
isModule
java.lang.Boolean isModule
True, if this script is ES6 module.
OPTIONAL -
length
java.lang.Integer length
This script length.
OPTIONAL -
scriptId
java.lang.String scriptId
Identifier of the script parsed. -
scriptLanguage
java.lang.String scriptLanguage
The language of the script.
OPTIONALEXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
sourceMapURL
java.lang.String sourceMapURL
URL of source map associated with script (if any).
OPTIONAL -
stackTrace
RunTime.StackTrace stackTrace
JavaScript top stack frame of where the script parsed event was triggered if available.
OPTIONALEXPERIMENTAL -
startColumn
int startColumn
Column offset of the script within the resource with given URL. -
startLine
int startLine
Line offset of the script within the resource with given URL (for script tags). -
url
java.lang.String url
URL or name of the script parsed (if any).
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.scriptParsed extends BrowserEvent<Debugger.scriptParsed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
buildId
java.lang.String buildId
For Wasm modules, the content of thebuild_idcustom section. For JavaScript thedebugIdmagic comment. -
codeOffset
java.lang.Integer codeOffset
If the scriptLanguage is WebAssembly, the code section offset in the module.
OPTIONALEXPERIMENTAL -
debugSymbols
Debugger.DebugSymbols[] debugSymbols
If the scriptLanguage is WebAssembly, the source of debug symbols for the module.
OPTIONALEXPERIMENTAL -
embedderName
java.lang.String embedderName
The name the embedder supplied for this script.
OPTIONALEXPERIMENTAL -
endColumn
int endColumn
Length of the last line of the script. -
endLine
int endLine
Last line of the script. -
executionContextAuxData
JsonValue executionContextAuxData
Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
OPTIONAL -
executionContextId
int executionContextId
Specifies script creation context. -
hash
java.lang.String hash
Content hash of the script, SHA-256. -
hasSourceURL
java.lang.Boolean hasSourceURL
True, if this script has sourceURL.
OPTIONAL -
isLiveEdit
java.lang.Boolean isLiveEdit
True, if this script is generated as a result of the live edit operation.
OPTIONALEXPERIMENTAL -
isModule
java.lang.Boolean isModule
True, if this script is ES6 module.
OPTIONAL -
length
java.lang.Integer length
This script length.
OPTIONAL -
resolvedBreakpoints
Debugger.ResolvedBreakpoint[] resolvedBreakpoints
The list of set breakpoints in this script if calls tosetBreakpointByUrlmatches this script's URL or hash. Clients that use this list can ignore thebreakpointResolvedevent. They are equivalent.
OPTIONALEXPERIMENTAL -
scriptId
java.lang.String scriptId
Identifier of the script parsed. -
scriptLanguage
java.lang.String scriptLanguage
The language of the script.
OPTIONALEXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
sourceMapURL
java.lang.String sourceMapURL
URL of source map associated with script (if any).
OPTIONAL -
stackTrace
RunTime.StackTrace stackTrace
JavaScript top stack frame of where the script parsed event was triggered if available.
OPTIONALEXPERIMENTAL -
startColumn
int startColumn
Column offset of the script within the resource with given URL. -
startLine
int startLine
Line offset of the script within the resource with given URL (for script tags). -
url
java.lang.String url
URL or name of the script parsed (if any).
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.ScriptPosition extends BaseType<Debugger.ScriptPosition> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
int columnNumber
[No Description Provided by Google] -
lineNumber
int lineNumber
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.SearchMatch extends BaseType<Debugger.SearchMatch> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
lineContent
java.lang.String lineContent
Line with match content. -
lineNumber
java.lang.Number lineNumber
Line number in resource content.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.setBreakpoint$$RET extends BaseType<Debugger.setBreakpoint$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
actualLocation
Debugger.Location actualLocation
Location this breakpoint resolved into. -
breakpointId
java.lang.String breakpointId
Id of the created breakpoint for further reference.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.setBreakpointByUrl$$RET extends BaseType<Debugger.setBreakpointByUrl$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
breakpointId
java.lang.String breakpointId
Id of the created breakpoint for further reference. -
locations
Debugger.Location[] locations
List of the locations this breakpoint resolved into upon addition.
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.setScriptSource$$RET extends BaseType<Debugger.setScriptSource$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
asyncStackTrace
RunTime.StackTrace asyncStackTrace
Async stack trace, if any.
OPTIONALDEPRECATED -
asyncStackTraceId
RunTime.StackTraceId asyncStackTraceId
Async stack trace, if any.
OPTIONALDEPRECATED -
callFrames
Debugger.CallFrame[] callFrames
New stack trace in case editing has happened while VM was stopped.
OPTIONALDEPRECATED -
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details if any. Only present whenstatusisCompileError.
OPTIONAL -
stackChanged
java.lang.Boolean stackChanged
Whether current call stack was modified after applying the changes.
OPTIONALDEPRECATED -
status
java.lang.String status
Whether the operation was successful or not. OnlyOkdenotes a successful live edit while the other enum variants denote why the live edit failed.
EXPERIMENTAL- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.Debugger.WasmDisassemblyChunk extends BaseType<Debugger.WasmDisassemblyChunk> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bytecodeOffsets
int[] bytecodeOffsets
The bytecode offsets describing the start of each line. -
lines
java.lang.String[] lines
The next chunk of disassembled lines.
-
-
Class Torello.Browser.JavaScriptAPI.HeapProfiler.addHeapSnapshotChunk extends BrowserEvent<HeapProfiler.addHeapSnapshotChunk> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
chunk
java.lang.String chunk
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.HeapProfiler.heapStatsUpdate extends BrowserEvent<HeapProfiler.heapStatsUpdate> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
statsUpdate
int[] statsUpdate
An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment.
-
-
Class Torello.Browser.JavaScriptAPI.HeapProfiler.lastSeenObjectId extends BrowserEvent<HeapProfiler.lastSeenObjectId> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
lastSeenObjectId
int lastSeenObjectId
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.HeapProfiler.reportHeapSnapshotProgress extends BrowserEvent<HeapProfiler.reportHeapSnapshotProgress> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
done
int done
[No Description Provided by Google] -
finished
java.lang.Boolean finished
[No Description Provided by Google]
OPTIONAL -
total
int total
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.HeapProfiler.SamplingHeapProfile extends BaseType<HeapProfiler.SamplingHeapProfile> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
head
HeapProfiler.SamplingHeapProfileNode head
[No Description Provided by Google] -
samples
HeapProfiler.SamplingHeapProfileSample[] samples
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.HeapProfiler.SamplingHeapProfileNode extends BaseType<HeapProfiler.SamplingHeapProfileNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
callFrame
RunTime.CallFrame callFrame
Function location. -
children
HeapProfiler.SamplingHeapProfileNode[] children
Child nodes. -
id
int id
Node id. Ids are unique across all profiles collected between startSampling and stopSampling. -
selfSize
java.lang.Number selfSize
Allocations size in bytes for the node excluding children.
-
-
Class Torello.Browser.JavaScriptAPI.HeapProfiler.SamplingHeapProfileSample extends BaseType<HeapProfiler.SamplingHeapProfileSample> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeId
int nodeId
Id of the corresponding profile tree node. -
ordinal
java.lang.Number ordinal
Time-ordered sample ordinal number. It is unique across all profiles retrieved between startSampling and stopSampling. -
size
java.lang.Number size
Allocation size in bytes attributed to the sample.
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.consoleProfileFinished extends BrowserEvent<Profiler.consoleProfileFinished> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
[No Description Provided by Google] -
location
Debugger.Location location
Location of console.profileEnd(). -
profile
Profiler.Profile profile
[No Description Provided by Google] -
title
java.lang.String title
Profile title passed as an argument to console.profile().
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.consoleProfileStarted extends BrowserEvent<Profiler.consoleProfileStarted> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
id
java.lang.String id
[No Description Provided by Google] -
location
Debugger.Location location
Location of console.profile(). -
title
java.lang.String title
Profile title passed as an argument to console.profile().
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.CoverageRange extends BaseType<Profiler.CoverageRange> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
count
int count
Collected execution count of the source range. -
endOffset
int endOffset
JavaScript script source offset for the range end. -
startOffset
int startOffset
JavaScript script source offset for the range start.
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.FunctionCoverage extends BaseType<Profiler.FunctionCoverage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
functionName
java.lang.String functionName
JavaScript function name. -
isBlockCoverage
boolean isBlockCoverage
Whether coverage data for this function has block granularity. -
ranges
Profiler.CoverageRange[] ranges
Source ranges inside the function with coverage data.
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.PositionTickInfo extends BaseType<Profiler.PositionTickInfo> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
line
int line
Source line number (1-based). -
ticks
int ticks
Number of samples attributed to the source line.
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.preciseCoverageDeltaUpdate extends BrowserEvent<Profiler.preciseCoverageDeltaUpdate> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
occasion
java.lang.String occasion
Identifier for distinguishing coverage events. -
result
Profiler.ScriptCoverage[] result
Coverage data for the current isolate. -
timestamp
java.lang.Number timestamp
Monotonically increasing time (in seconds) when the coverage update was taken in the backend.
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.Profile extends BaseType<Profiler.Profile> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
endTime
java.lang.Number endTime
Profiling end timestamp in microseconds. -
nodes
Profiler.ProfileNode[] nodes
The list of profile nodes. First item is the root node. -
samples
int[] samples
Ids of samples top nodes.
OPTIONAL -
startTime
java.lang.Number startTime
Profiling start timestamp in microseconds. -
timeDeltas
int[] timeDeltas
Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.ProfileNode extends BaseType<Profiler.ProfileNode> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
callFrame
RunTime.CallFrame callFrame
Function location. -
children
int[] children
Child node ids.
OPTIONAL -
deoptReason
java.lang.String deoptReason
The reason of being not optimized. The function may be deoptimized or marked as don't optimize.
OPTIONAL -
hitCount
java.lang.Integer hitCount
Number of samples where this node was on top of the call stack.
OPTIONAL -
id
int id
Unique id of the node. -
positionTicks
Profiler.PositionTickInfo[] positionTicks
An array of source position ticks.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.ScriptCoverage extends BaseType<Profiler.ScriptCoverage> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
functions
Profiler.FunctionCoverage[] functions
Functions contained in the script that has coverage data. -
scriptId
java.lang.String scriptId
JavaScript script id. -
url
java.lang.String url
JavaScript script name or url.
-
-
Class Torello.Browser.JavaScriptAPI.Profiler.takePreciseCoverage$$RET extends BaseType<Profiler.takePreciseCoverage$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
result
Profiler.ScriptCoverage[] result
Coverage data for the current isolate. -
timestamp
java.lang.Number timestamp
Monotonically increasing time (in seconds) when the coverage update was taken in the backend.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.awaitPromise$$RET extends BaseType<RunTime.awaitPromise$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details if stack strace is available.
OPTIONAL -
result
RunTime.RemoteObject result
Promise result. Will contain rejected value if promise was rejected.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.bindingCalled extends BrowserEvent<RunTime.bindingCalled> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
executionContextId
int executionContextId
Identifier of the context where the call was made. -
name
java.lang.String name
[No Description Provided by Google] -
payload
java.lang.String payload
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.CallArgument extends BaseType<RunTime.CallArgument> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
objectId
java.lang.String objectId
Remote object handle.
OPTIONAL -
unserializableValue
java.lang.String unserializableValue
Primitive value which can not be JSON-stringified.
OPTIONAL -
value
JsonValue value
Primitive value or serializable javascript object.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.CallFrame extends BaseType<RunTime.CallFrame> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
int columnNumber
JavaScript script column number (0-based). -
functionName
java.lang.String functionName
JavaScript function name. -
lineNumber
int lineNumber
JavaScript script line number (0-based). -
scriptId
java.lang.String scriptId
JavaScript script id. -
url
java.lang.String url
JavaScript script name or url.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.callFunctionOn$$RET extends BaseType<RunTime.callFunctionOn$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details.
OPTIONAL -
result
RunTime.RemoteObject result
Call result.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.compileScript$$RET extends BaseType<RunTime.compileScript$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details.
OPTIONAL -
scriptId
java.lang.String scriptId
Id of the script.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.consoleAPICalled extends BrowserEvent<RunTime.consoleAPICalled> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
args
RunTime.RemoteObject[] args
Call arguments. -
context
java.lang.String context
Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context.
OPTIONALEXPERIMENTAL -
executionContextId
int executionContextId
Identifier of the context where the call was made. -
stackTrace
RunTime.StackTrace stackTrace
Stack trace captured when the call was made. The async stack chain is automatically reported for the following call types:assert,error,trace,warning. For other types the async call chain can be retrieved usingDebugger.getStackTraceandstackTrace.parentIdfield.
OPTIONAL -
timestamp
java.lang.Number timestamp
Call timestamp. -
type
java.lang.String type
Type of the call.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.CustomPreview extends BaseType<RunTime.CustomPreview> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bodyGetterId
java.lang.String bodyGetterId
If formatter returns true as a result of formatter.hasBody call then bodyGetterId will contain RemoteObjectId for the function that returns result of formatter.body(object, config) call. The result value is json ML array.
OPTIONAL -
header
java.lang.String header
The JSON-stringified result of formatter.header(object, config) call. It contains json ML array that represents RemoteObject.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.DeepSerializedValue extends BaseType<RunTime.DeepSerializedValue> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
objectId
java.lang.String objectId
[No Description Provided by Google]
OPTIONAL -
type
java.lang.String type
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
value
JsonValue value
[No Description Provided by Google]
OPTIONAL -
weakLocalObjectReference
java.lang.Integer weakLocalObjectReference
Set if value reference met more then once during serialization. In such case, value is provided only to one of the serialized values. Unique per value in the scope of one CDP call.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.EntryPreview extends BaseType<RunTime.EntryPreview> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
key
RunTime.ObjectPreview key
Preview of the key. Specified for map-like collection entries.
OPTIONAL -
value
RunTime.ObjectPreview value
Preview of the value.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.evaluate$$RET extends BaseType<RunTime.evaluate$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details.
OPTIONAL -
result
RunTime.RemoteObject result
Evaluation result.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.ExceptionDetails extends BaseType<RunTime.ExceptionDetails> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNumber
int columnNumber
Column number of the exception location (0-based). -
exception
RunTime.RemoteObject exception
Exception object if available.
OPTIONAL -
exceptionId
int exceptionId
Exception id. -
exceptionMetaData
JsonValue exceptionMetaData
Dictionary with entries of meta data that the client associated with this exception, such as information about associated network requests, etc.
OPTIONALEXPERIMENTAL -
executionContextId
java.lang.Integer executionContextId
Identifier of the context where exception happened.
OPTIONAL -
lineNumber
int lineNumber
Line number of the exception location (0-based). -
scriptId
java.lang.String scriptId
Script ID of the exception location.
OPTIONAL -
stackTrace
RunTime.StackTrace stackTrace
JavaScript stack trace if available.
OPTIONAL -
text
java.lang.String text
Exception text, which should be used together with exception object when available. -
url
java.lang.String url
URL of the exception location, to be used when the script was not reported.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.exceptionRevoked extends BrowserEvent<RunTime.exceptionRevoked> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionId
int exceptionId
The id of revoked exception, as reported inexceptionThrown. -
reason
java.lang.String reason
Reason describing why exception was revoked.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.exceptionThrown extends BrowserEvent<RunTime.exceptionThrown> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
[No Description Provided by Google] -
timestamp
java.lang.Number timestamp
Timestamp of the exception.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.executionContextCreated extends BrowserEvent<RunTime.executionContextCreated> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
context
RunTime.ExecutionContextDescription context
A newly created execution context.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.ExecutionContextDescription extends BaseType<RunTime.ExecutionContextDescription> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
auxData
JsonValue auxData
Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
OPTIONAL -
id
int id
Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed. -
name
java.lang.String name
Human readable name describing given context. -
origin
java.lang.String origin
Execution context origin. -
uniqueId
java.lang.String uniqueId
A system-unique execution context identifier. Unlike the id, this is unique across multiple processes, so can be reliably used to identify specific context while backend performs a cross-process navigation.
EXPERIMENTAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.executionContextDestroyed extends BrowserEvent<RunTime.executionContextDestroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
executionContextId
int executionContextId
Id of the destroyed context
DEPRECATED -
executionContextUniqueId
java.lang.String executionContextUniqueId
Unique Id of the destroyed context
EXPERIMENTAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.getHeapUsage$$RET extends BaseType<RunTime.getHeapUsage$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
backingStorageSize
java.lang.Number backingStorageSize
Size in bytes of backing storage for array buffers and external strings. -
embedderHeapUsedSize
java.lang.Number embedderHeapUsedSize
Used size in bytes in the embedder's garbage-collected heap. -
totalSize
java.lang.Number totalSize
Allocated JavaScript heap size in bytes. -
usedSize
java.lang.Number usedSize
Used JavaScript heap size in bytes.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.getProperties$$RET extends BaseType<RunTime.getProperties$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details.
OPTIONAL -
internalProperties
RunTime.InternalPropertyDescriptor[] internalProperties
Internal object properties (only of the element itself).
OPTIONAL -
privateProperties
RunTime.PrivatePropertyDescriptor[] privateProperties
Object private properties.
OPTIONALEXPERIMENTAL -
result
RunTime.PropertyDescriptor[] result
Object properties.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.inspectRequested extends BrowserEvent<RunTime.inspectRequested> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
executionContextId
java.lang.Integer executionContextId
Identifier of the context where the call was made.
OPTIONALEXPERIMENTAL -
hints
JsonValue hints
[No Description Provided by Google] -
object
RunTime.RemoteObject object
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.InternalPropertyDescriptor extends BaseType<RunTime.InternalPropertyDescriptor> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Conventional property name. -
value
RunTime.RemoteObject value
The value associated with the property.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.ObjectPreview extends BaseType<RunTime.ObjectPreview> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
description
java.lang.String description
String representation of the object.
OPTIONAL -
entries
RunTime.EntryPreview[] entries
List of the entries. Specified formapandsetsubtype values only.
OPTIONAL -
overflow
boolean overflow
True iff some of the properties or entries of the original object did not fit. -
properties
RunTime.PropertyPreview[] properties
List of the properties. -
subtype
java.lang.String subtype
Object subtype hint. Specified forobjecttype values only.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
type
java.lang.String type
Object type.- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.PrivatePropertyDescriptor extends BaseType<RunTime.PrivatePropertyDescriptor> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
get
RunTime.RemoteObject get
A function which serves as a getter for the private property, orundefinedif there is no getter (accessor descriptors only).
OPTIONAL -
name
java.lang.String name
Private property name. -
set
RunTime.RemoteObject set
A function which serves as a setter for the private property, orundefinedif there is no setter (accessor descriptors only).
OPTIONAL -
value
RunTime.RemoteObject value
The value associated with the private property.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.PropertyDescriptor extends BaseType<RunTime.PropertyDescriptor> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
configurable
boolean configurable
True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object. -
enumerable
boolean enumerable
True if this property shows up during enumeration of the properties on the corresponding object. -
get
RunTime.RemoteObject get
A function which serves as a getter for the property, orundefinedif there is no getter (accessor descriptors only).
OPTIONAL -
isOwn
java.lang.Boolean isOwn
True if the property is owned for the object.
OPTIONAL -
name
java.lang.String name
Property name or symbol description. -
set
RunTime.RemoteObject set
A function which serves as a setter for the property, orundefinedif there is no setter (accessor descriptors only).
OPTIONAL -
symbol
RunTime.RemoteObject symbol
Property symbol object, if the property is of thesymboltype.
OPTIONAL -
value
RunTime.RemoteObject value
The value associated with the property.
OPTIONAL -
wasThrown
java.lang.Boolean wasThrown
True if the result was thrown during the evaluation.
OPTIONAL -
writable
java.lang.Boolean writable
True if the value associated with the property may be changed (data descriptors only).
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.PropertyPreview extends BaseType<RunTime.PropertyPreview> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Property name. -
subtype
java.lang.String subtype
Object subtype hint. Specified forobjecttype values only.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
type
java.lang.String type
Object type. Accessor means that the property itself is an accessor property.- See Also:
BaseType.enumStrList(String)
-
value
java.lang.String value
User-friendly property value string.
OPTIONAL -
valuePreview
RunTime.ObjectPreview valuePreview
Nested value preview.
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.RemoteObject extends BaseType<RunTime.RemoteObject> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
className
java.lang.String className
Object class (constructor) name. Specified forobjecttype values only.
OPTIONAL -
customPreview
RunTime.CustomPreview customPreview
[No Description Provided by Google]
OPTIONALEXPERIMENTAL -
deepSerializedValue
RunTime.DeepSerializedValue deepSerializedValue
Deep serialized value.
OPTIONALEXPERIMENTAL -
description
java.lang.String description
String representation of the object.
OPTIONAL -
objectId
java.lang.String objectId
Unique object identifier (for non-primitive values).
OPTIONAL -
preview
RunTime.ObjectPreview preview
Preview containing abbreviated property values. Specified forobjecttype values only.
OPTIONALEXPERIMENTAL -
subtype
java.lang.String subtype
Object subtype hint. Specified forobjecttype values only. NOTE: If you change anything here, make sure to also updatesubtypeinObjectPreviewandPropertyPreviewbelow.
OPTIONAL- See Also:
BaseType.enumStrList(String)
-
type
java.lang.String type
Object type.- See Also:
BaseType.enumStrList(String)
-
unserializableValue
java.lang.String unserializableValue
Primitive value which can not be JSON-stringified does not havevalue, but gets this property.
OPTIONAL -
value
JsonValue value
Remote object value in case of primitive values or JSON values (if it was requested).
OPTIONAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.runScript$$RET extends BaseType<RunTime.runScript$$RET> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
exceptionDetails
RunTime.ExceptionDetails exceptionDetails
Exception details.
OPTIONAL -
result
RunTime.RemoteObject result
Run result.
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.SerializationOptions extends BaseType<RunTime.SerializationOptions> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
additionalParameters
JsonValue additionalParameters
Embedder-specific parameters. For example if connected to V8 in Chrome these control DOM serialization viamaxNodeDepth: integerandincludeShadowTree: "none" | "open" | "all". Values can be only of type string or integer.
OPTIONAL -
maxDepth
java.lang.Integer maxDepth
Deep serialization depth. Default is full depth. Respected only indeepserialization mode.
OPTIONAL -
serialization
java.lang.String serialization
[No Description Provided by Google]- See Also:
BaseType.enumStrList(String)
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.StackTrace extends BaseType<RunTime.StackTrace> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
callFrames
RunTime.CallFrame[] callFrames
JavaScript function name. -
description
java.lang.String description
String label of this stack trace. For async traces this may be a name of the function that initiated the async call.
OPTIONAL -
parent
RunTime.StackTrace parent
Asynchronous JavaScript stack trace that preceded this stack, if available.
OPTIONAL -
parentId
RunTime.StackTraceId parentId
Asynchronous JavaScript stack trace that preceded this stack, if available.
OPTIONALEXPERIMENTAL
-
-
Class Torello.Browser.JavaScriptAPI.RunTime.StackTraceId extends BaseType<RunTime.StackTraceId> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
debuggerId
java.lang.String debuggerId
[No Description Provided by Google]
OPTIONAL -
id
java.lang.String id
[No Description Provided by Google]
-
-
Class Torello.Browser.JavaScriptAPI.Schema.Domain extends BaseType<Schema.Domain> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
java.lang.String name
Domain name. -
version
java.lang.String version
Domain version.
-
-
-
Package Torello.Browser.JsonAST
-
Class Torello.Browser.JsonAST.API extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
domains
ReadOnlyList<Domain> domains
The complete list of domain's in the API, extracted & parsed from the Json File. -
id
int id
-
inFileName
java.lang.String inFileName
Contains the Json Specifiction File's name -
name
java.lang.String name
This will either contain theString "BrowserAPI"or the"JavaScriptAPI"
-
-
Class Torello.Browser.JsonAST.ASTError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.JsonAST.CommandNode extends TCE implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hasReifiedRetInnerClass
boolean hasReifiedRetInnerClass
Flag which indicates whether the CDP Command represented by this node returns multiple values, which therefore necessitates a dedicated inner type to represesnt those return values. -
parameters
ReadOnlyList<PPR> parameters
APPRlist which, during the Code Generator Phase, is translated into the input parameters for the Java Method which ultimately materializes and implements this CDP Command. -
redirect
java.lang.String redirect
This field contains the rawStringvalue of the"redirect"Json Property. -
redirectDomain
Domain redirectDomain
-
returns
ReadOnlyList<PPR> returns
APPRlist which, during the Code Generator Phase, is translated into the output return values of the Java Method which ultimately materializes and implements this CDP Command.
-
-
Class Torello.Browser.JsonAST.Domain extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
commands
ReadOnlyList<CommandNode> commands
All type definitions declared under this domain, parsed and extracted intoCommandNodeinstances. -
depAsStrs
ReadOnlyList<java.lang.String> depAsStrs
Raw "dependencies" array preserved from the spec asjava.lang.String's. These dependencies are not actually used anywhere in this code, but they are linked into actualDomainreferences, and can be obtained by invokingDomain.getDependencies() -
dependencies
ReadOnlyList<Domain> dependencies
-
deprecated
boolean deprecated
TRUEif the spec marks this domain as deprecated. -
description
java.lang.String description
Human-readable description extracted from the spec; may be empty if not provided. -
events
ReadOnlyList<EventNode> events
All type definitions declared under this domain, parsed and extracted intoEventNodeinstances. -
experimental
boolean experimental
TRUEif the spec marks this domain as experimental. -
id
int id
Unique process-local identifier for this domain instance, assigned internally byIDManager.nextID() -
name
java.lang.String name
Domain name taken from the specβs "domain" property (e.g., 'Network', 'Runtime', etc.). -
ownerAPI
API ownerAPI
Owning API this domain belongs to (Browser API or JavaScript API). -
propNames
ReadOnlyList<PropName> propNames
Complete list of top-level JSON property names present within the definition for this domain'sJsonObject. -
types
ReadOnlyList<TypeNode> types
All type definitions declared under this domain, parsed and extracted intoTypeNodeinstances.
-
-
Class Torello.Browser.JsonAST.Entity extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
arrItemsTypeProp
TypeProp arrItemsTypeProp
Additional type, used when theEntity.typePropequalsTypeProp.ARRAY. -
deprecated
boolean deprecated
True if this CDP item is marked deprecated. -
description
java.lang.String description
Human-readable description of the CDP entity as specified in the protocol, by Google. -
enumVals
ReadOnlyList<java.lang.String> enumVals
Allowed enumerationStringvalues for this CDP item. -
enumValsStr
java.lang.String enumValsStr
Comma-separated rendering ofEntity.enumVals, used to facilitate printing summaries. -
experimental
boolean experimental
True if this CDP item is marked experimental. -
id
int id
Monotonic ID for this CDP entity used byequalsandhashCode. -
index
int index
EveryEntityinstance is parsed from aJsonArray; this is the array index. -
name
java.lang.String name
Canonical CDP name for this entity. -
optional
boolean optional
True if this CDP item is optional. -
ownerDomain
Domain ownerDomain
CDP domain that owns this entity (for example,'Network'or'DOM'). -
propNames
ReadOnlyList<PropName> propNames
List of allJsonObjectproperty keys for this CDP item, as parsed from theJsonObjetfrom which thisEntityinstance was extracted. -
typeProp
TypeProp typeProp
TheJsonObject"type"Property for this item as a strict enum. -
whichEntity
WhichEntity whichEntity
There are only two concrete subclasses ofEntity:PPRand .
-
-
Class Torello.Browser.JsonAST.EventNode extends TCE implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isReifiedInnerClass
boolean isReifiedInnerClass
Flag indicating whether this EventNode represents a reified inner class in the CDP model. -
parameters
ReadOnlyList<PPR> parameters
Collection of PPR (Parameter) instances that will be materialized as Java Event-Class fields
-
-
Class Torello.Browser.JsonAST.InfoData extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
eliminatedTypeNodes
ReadOnlyList<TypeNode> eliminatedTypeNodes
-
enumValTypeNodes
ReadOnlyList<TypeNode> enumValTypeNodes
-
hasEnumStrLists
ReadOnlySet<Domain> hasEnumStrLists
- See Also:
Entity.ownerDomain,InfoData.enumValTypeNodes
-
hasMarkerEvents
ReadOnlySet<Domain> hasMarkerEvents
- See Also:
Entity.ownerDomain,InfoData.markerEventNodes
-
hasReifiedEvents
ReadOnlySet<Domain> hasReifiedEvents
The set of all domains which have actual nested java inner classes defined within them. Event inner classes are not actually defined in any way that is different from standard inner types. Instead, they are just listed on their respective Java-Doc Pages as "Event Classes" which are only generated when the CDP API actually fires an event for them.
In the most recent parsing and generation of the "Browser API" from CDP, 33 out of the 47 Domains have actual, reified, events. You may see thetoString Outputfor this class by clicking the link. -
hasReifiedReturnTypes
ReadOnlySet<Domain> hasReifiedReturnTypes
This should list all domains that have commands which return more than one value as a result of their invocation. Rather than return tuples of results, a dedicated nested-inner type is created for any CDP command that needs to actually return more than one value. -
hasReifiedTypes
ReadOnlySet<Domain> hasReifiedTypes
The set of all domains which have actual nested java inner classes defined within them. There are relatively few domains in the CDP API that do not actually define any types, though there are some.
In the most recent parsing and generation of the "Browser API" from CDP, 41 out of the 47 Domains have actual, reified, events. You may see thetoString Outputfor this class by clicking the link. -
hasSimpleTypes
ReadOnlySet<Domain> hasSimpleTypes
The list of domains which have at least one zero-property type (and were eliminated during the code generation step). -
markerEventNodes
ReadOnlyList<EventNode> markerEventNodes
-
simpleTypeNodes
ReadOnlyList<TypeNode> simpleTypeNodes
-
-
Class Torello.Browser.JsonAST.LinkingStateError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Browser.JsonAST.PPR extends Entity implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
ctab
byte ctab
-
ctas
java.lang.String ctas
-
ownerTCE
TCE ownerTCE
This is a "Back Pointer" to theTCE(either aTypeNode,CommandNodeorEventNode) that is the parent or owner of'this'PPR instance. -
ref
java.lang.String ref
This field is declaredfinal, and contains the raw-Stringvalue which is retrieved (during JSON parsing) from the"$ref"JsonObjectproperty which defines'this' PPRinstance -
refArray
java.lang.String refArray
ThisStringis declaredfinal, and contains the raw-Stringvalue which is retrieved during the parsing of an'items'JsonObjectwithin thisPPRdefinition. -
reference
TypeNode reference
-
referenceArray
TypeNode referenceArray
-
which
WhichPPR which
Expresses, explicitly, (without requiring an'instanceof'operator), whether or not'this'instance repesents a property, a parameter or a return-value.
-
-
Class Torello.Browser.JsonAST.SERIALIZED_AST extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
browserAPI
API browserAPI
This is an instance field, and after the AST's have been loaded from the'.jar'file, this field will contain the Abstract Syntax Tree for Google's "Browser API" suite of methods, types and events.
Remember that all of the public-facing methods & fields in the AST nodes are declared'final'. Any lists or sets present in these nodes have been built with classes from Java-HTML's "Read Only" Package. It is impossible to break, ruin or screw-up these trees. They, and their contents, are perfectly immutable!- See Also:
SERIALIZED_AST.deserializeFromJAR()
-
browserDat
InfoData browserDat
This is some rather boring "facts" about the classes and methods in the AST ("the tree"). This data-field and group of Read-Only "sets" and "lists" exists solely to make the actual code written for the (proprietary, and non-visible) Java-HTML Browser Package Code Generator look a little nicer and a little bit easier to read.
You may review these lists; they aren't that interesting. The contents of theInfoDataare all declared'final'and typed using "Read Only" data-types. They are perfectly immutable, and you cannot "screw them up" or anything like that. ππ -
jsAPI
API jsAPI
This is an instance field, and after the AST's have been loaded from the'.jar'file, this field will contain the Abstract Syntax Tree for Google's "JavaScript API" suite of methods, types and events.
Remember that all of the public-facing methods & fields in the AST nodes are declared'final'. Any lists or sets present in these nodes have been built with classes from Java-HTML's "Read Only" Package. It is impossible to break, ruin or screw-up these trees. They, and their contents, are perfectly immutable!- See Also:
SERIALIZED_AST.deserializeFromJAR()
-
jsDat
InfoData jsDat
This is some rather boring "facts" about the classes and methods in the AST ("the tree"). This data-field and group of Read-Only "sets" and "lists" exists solely to make the actual code written for the (proprietary, and non-visible) Java-HTML Browser Package Code Generator look a little nicer and a little bit easier to read.
You may review these lists; they aren't that interesting. The contents of theInfoDataare all declared'final'and typed using "Read Only" data-types. They are perfectly immutable, and you cannot "screw them up" or anything like that. ππ
-
-
Class Torello.Browser.JsonAST.TCE extends Entity implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
which
WhichTCE which
Contains a simple 'enum' constant which Indicates whether'this'TCE instance has been parsed a"types", "commands"or an"events"array.
-
-
Class Torello.Browser.JsonAST.TypeNode extends TCE implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
CTAB
byte CTAB
CTAB:Computed Type as Byte: identical toTypeNode.CTAS; however the information is encoded as a'byte'primitive as per the list of types exposed in classCDPTypes.- See Also:
TypeNode.CTAS,CDPTypes,CDPTypes.ctasToByte(String)
-
CTAS
java.lang.String CTAS
CTAS:Computed Type as String: is a field which summarizing this TypeNodeβs resolved Java Type.- See Also:
TypeNode.CTAB
-
isReifiedInnerClass
boolean isReifiedInnerClass
Flag indicating whether this TypeNode represents a reified inner class in the CDP model. -
properties
ReadOnlyList<PPR> properties
Collection of PPR (Property) instances that will be materialized as Java class fields.
-
-
-
Package Torello.CSS
-
Class Torello.CSS.AtKeyword extends Identifier implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.BadStr extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
startingQuote
char startingQuote
-
unescaped
java.lang.String unescaped
-
-
Class Torello.CSS.BadURL extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.CDC extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.CDO extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.ClassNameCSSException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.Comment extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.CSSToken extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
str
java.lang.String str
The "Reconstituted Character Data" (re-built from the input Code-Points array) that comprise thisCSSToken.
-
-
Class Torello.CSS.Delimiter extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
c
char c
The Character represented by thisDelimiter-Token
-
-
Class Torello.CSS.Dimension extends Num implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dimension
java.lang.String dimension
The text /Stringthat was appended to the end of the number that begin thisDimension-Token
-
-
Class Torello.CSS.EOF extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.Func extends Identifier implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.Hash extends Identifier implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isID
boolean isID
-
-
Class Torello.CSS.Identifier extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
identifier
java.lang.String identifier
This contains the unescaped text that that constitutes this identifier. Identifiers are permitted to use Escaped-Unicode Sequences. If any characters were escaped, thisStringwill have the unescaped variant of theStringstored here.
-
-
Class Torello.CSS.Num extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
integerOrNumber
boolean integerOrNumber
The parser will return true if the parsed Number-Literal had neither a "Decimal Part", nor an "Exponent Part". If either of these were present, then thisbooleanwill containFALSE.
Note that even though something like5e2- which is actually just the integer500- were parsed, thisbooleanwould still evaluate toFALSE. -
number
java.math.BigDecimal number
Though Java'sBigDecimalmay be an "overly ambitious" means of representing CSS-Extracted Number-Literals, for now, this is how it is going to work. After the'javadoc'stuff is done, maybe I'll change it tojava.lang.Numberor something else.
Yes, a"2em"or"10px"would be saved as a BigDecimal2and10. The upside is that Javadoubleandintegerprimitives are easily extracted usingjava.math.BigDecimal's exported methods. -
signChar
char signChar
This shall contain one of three values:'+', '-'or ASCII0. If the parsed Number-Literal began with a sign-character, then the appropriate sign-character will be stored. If the Number-Literal had no sign-character, then a0is stored.
-
-
Class Torello.CSS.Percentage extends Num implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.Punct extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
c
char c
The actual character that comprises this Punxtuation-Mark Token. Because ClassPunctonly allows singleton instances, therefore there is a limited number of characters to which this field may be assigned.
The nine singleton instances of ClassPunctare built for the following nine punctuation characters:':' ';' ',' '[' ']' '(' ')' '{' '}'
-
-
Class Torello.CSS.Str extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
quote
char quote
The quotation mark type used to quote thisString-Literal. The value placed in this Javacharprimitive may only be a Single-Quotation Mark, or a Double-Quotation. No other types of quotations are included in this class parser. -
unescaped
java.lang.String unescaped
This is the actualString-Literal that thisCSSTokenrepresents. This JavaStringwill never actually contain the opening and closing quotation marks that were used to create thisString.
Unescaped String:
if thisStringutilized any Escape-Sequences representing Unicode Characters, the Unescaped-Characters are used within thisStringto replace the original, escaped, sequences.
ChatGPT Provided Exmaple:
There is a quoted,Stringbelow, provided by AI. Note that ChatGPT initially gave me a slightly different answer written as"β Checkmark"(which you may or may not notice has a'u'character between the Reverse-Solidus Backslash character and the Hexadecimal Characters'2713').
After further research, ChatGPT apologized for it's mistake saying:
"You're correct, and I apologize for the oversight. In CSS, Unicode escape sequences within string literals do not start with the u character. Instead, they consist of a backslash followed by up to six hexadecimal digits, representing the Unicode code point."
This crap sort of amazes me. I really can't believe it. Anything that Stack Overflow is busy condemning, with a very high likelihood is bound to be pretty good..selector::before { content: "\2713 Checkmark"; font-family: Arial, sans-serif; }
The above CSS-String(which is inside the'content'Property-Value) would be stored in the field'unescaped'as:✓ Checkmark.
-
-
Class Torello.CSS.TokenizeException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.CSS.UnicodeRange extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
eRange
int eRange
The ending value of the range that has been specified, as a Java Integer -
sRange
int sRange
The starting value of the range that has been specified, as a Java Integer.
-
-
Class Torello.CSS.URLToken extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
unescapedURL
java.lang.String unescapedURL
The unescaped text that constitutes thisURL.
-
-
Class Torello.CSS.Whitespace extends CSSToken implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.HTML
-
Class Torello.HTML.BalancedHTMLException extends MalformedHTMLException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.ClosingTagNodeException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.ClosingTagNodeExpectedException extends TagNodeExpectedException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.CommentNode extends HTMLNode implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
body
java.lang.String body
This stores a copy of the body of the comment. Specifically, (and simply) the java string methodbody = str.substring(4, str.length() - 3);is called and stored here. Yes, this does mean that extra memory / double memory is used to store comments, however the trade-offs are somewhat high.
Trade Off:
If the programmer or user ever wishes to perform a search, it becomes obvious that leaving off the beginning and trailing'<!--'and'-->'markers when specifying a search provides more easily readable code, and less error prone code. Thus, when using theCommentNodeFind, Get, Peek, Poll, etc...methods in thepackage NodeSearch, a Java Stringsubstring(...)would have to be invoked on every search comparison loop invocation. Primarily, keepingclass HTMLNodeand it's descendants all immutable is a much higher priority to ensure clean code, it becomes necessary to keep a redundant copy of the bodyString.
-
-
Class Torello.HTML.CommentNodeIndex extends NodeIndex<CommentNode> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.DotPair extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
end
int end
This is intended to be the "ending index" into a sub-array of an HTMLVectorofHTMLNodeelements. -
start
int start
This is intended to be the "starting index" into an sub-array of an HTMLVectorofHTMLNodeelements.
-
-
Class Torello.HTML.HREFException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.HTMLNode extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
str
java.lang.String str
This is an immutable field. It stores the complete contents of an HTML node. It can be either the "textual contents" of an HTMLTagNode, or the text (directly) of the text-inside of an HTML page!
FOR INSTANCE:- A subclass of HTMLNode -
TagNode- could contain the String <SPAN STYLE="CSS INFO">" inside thisstr fieldhere. - The other sub-class of HTML -
TextNode- could contain theString"This is a news-page from www.Gov.CN Chinese Government Portal." inside thisstr fieldhere.
NOTE: Because sub-classes ofHTMLNodeare all immutable, generally, if you wish to change the contents of an HTML page, a programmer is required to create new nodes, rather than changing these fields. - A subclass of HTMLNode -
-
-
Class Torello.HTML.HTMLTokException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.InnerTagKeyException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.InnerTagValueException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.MalformedHTMLException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.MalformedTagNodeException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
htmlElementStr
java.lang.String htmlElementStr
-
-
Class Torello.HTML.NodeExpectedException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.NodeIndex extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
CURRENT_NODES
java.util.Vector<HTMLNode> CURRENT_NODES
-
index
int index
An index to a node from a web-page. This index must point to a the exact same node inside of a vectorized-html page as the node stored in member-fieldHTMLNode 'n'. -
n
NODE extends HTMLNode n
AHTMLNodefrom a web-page. This node is supposed to be the same node stored at the index specified by member-fieldint 'index'of some vectorized-html web-page in memory or on disk. -
vectorAssigned
boolean vectorAssigned
-
-
Class Torello.HTML.NodeNotFoundException extends NodeExpectedException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.OpeningTagNodeExpectedException extends TagNodeExpectedException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.PageStats extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hasAVaccept
short hasAVaccept
The number of HTMLTagNodeelements that have a'accept'attribute, when queried usingTagNode.AV("accept") -
hasAValt
short hasAValt
The number of HTMLTagNodeelements that have an'alt'attribute, when queried usingTagNode.AV("alt") -
hasAVclass
short hasAVclass
The number of HTMLTagNodeelements that have a'class'attribute, when queried usingTagNode.AV("class") -
hasAVcols
short hasAVcols
The number of HTMLTagNodeelements that have a'cols'attribute, when queried usingTagNode.AV("cols") -
hasAVcolspan
short hasAVcolspan
The number of HTMLTagNodeelements that have a'colspan'attribute, when queried usingTagNode.AV("colspan") -
hasAVheight
short hasAVheight
The number of HTMLTagNodeelements that have a'height'attribute, when queried usingTagNode.AV("height") -
hasAVhref
short hasAVhref
The number of HTMLTagNodeelements that have an'href'attribute, when queried usingTagNode.AV("href") -
hasAVhreflang
short hasAVhreflang
The number of HTMLTagNodeelements that have a'hreflang'attribute, when queried usingTagNode.AV("hreflang") -
hasAVid
short hasAVid
The number of HTMLTagNodeelements that have an'id'attribute, when queried usingTagNode.AV("id") -
hasAVmax
short hasAVmax
The number of HTMLTagNodeelements that have a'max'attribute, when queried usingTagNode.AV("max") -
hasAVmaxlength
short hasAVmaxlength
The number of HTMLTagNodeelements that have a'maxlength'attribute, when queried usingTagNode.AV("maxlength") -
hasAVmin
short hasAVmin
The number of HTMLTagNodeelements that have a'min'attribute, when queried usingTagNode.AV("min") -
hasAVminlength
short hasAVminlength
The number of HTMLTagNodeelements that have a'minlength'attribute, when queried usingTagNode.AV("minlength") -
hasAVname
short hasAVname
The number of HTMLTagNodeelements that have a'name'attribute, when queried usingTagNode.AV("name") -
hasAVrows
short hasAVrows
The number of HTMLTagNodeelements that have a'rows'attribute, when queried usingTagNode.AV("rows") -
hasAVrowspan
short hasAVrowspan
The number of HTMLTagNodeelements that have a'rowspan'attribute, when queried usingTagNode.AV("rowspan") -
hasAVsize
short hasAVsize
The number of HTMLTagNodeelements that have a'size'attribute, when queried usingTagNode.AV("size") -
hasAVsizes
short hasAVsizes
The number of HTMLTagNodeelements that have a'sizes'attribute, when queried usingTagNode.AV("sizes") -
hasAVsrc
short hasAVsrc
The number of HTMLTagNodeelements that have a'src'attribute, when queried usingTagNode.AV("src") -
hasAVsrcdoc
short hasAVsrcdoc
The number of HTMLTagNodeelements that have a'srcdoc'attribute, when queried usingTagNode.AV("srcdoc") -
hasAVsrclang
short hasAVsrclang
The number of HTMLTagNodeelements that have a'srclang'attribute, when queried usingTagNode.AV("srclang") -
hasAVsrcset
short hasAVsrcset
The number of HTMLTagNodeelements that have a'srcset'attribute, when queried usingTagNode.AV("srcset") -
hasAVstyle
short hasAVstyle
The number of HTMLTagNodeelements that have a'style'attribute, when queried usingTagNode.AV("style") -
hasAVtarget
short hasAVtarget
The number of HTMLTagNodeelements that have a'target'attribute, when queried usingTagNode.AV("target") -
hasAVtitle
short hasAVtitle
The number of HTMLTagNodeelements that have a'title'attribute, when queried usingTagNode.AV("title") -
hasAVtype
short hasAVtype
The number of HTMLTagNodeelements that have a'type'attribute, when queried usingTagNode.AV("type") -
hasAVvalue
short hasAVvalue
The number of HTMLTagNodeelements that have a'value'attribute, when queried usingTagNode.AV("value") -
hasAVwidth
short hasAVwidth
The number of HTMLTagNodeelements that have a'width'attribute, when queried usingTagNode.AV("width") -
hasAVwrap
short hasAVwrap
The number of HTMLTagNodeelements that have a'wrap'attribute, when queried usingTagNode.AV("wrap") -
hash
int hash
The string hash-code of the vectorized-HTML webpage, as if it were being represented as one singlejava.lang.String. -
numBR
short numBR
The total number of HTML <BR>'TagNode'elements found on the page.
NOTE: This is considered an HTML-5'Singleton'element, and thusly should only have an "Opening-Tag Version" of the Element. If there are (accidentally) closing-versions of this tag, they will not be counted byclass PageStats -
numClosedAnchors
short numClosedAnchors
The total number of </A>, TC.ClosingTags, TagNode elements found on the page. -
numClosedDivs
short numClosedDivs
The total number of </DIV>, TC.ClosingTags, TagNode elements found on the page. -
numClosedForms
short numClosedForms
The total number of </FORM>, TC.ClosingTags, TagNode elements found on the page. -
numClosedFrames
short numClosedFrames
The total number of </FRAME>, TC.ClosingTags, TagNode elements found on the page. -
numClosedIFrames
short numClosedIFrames
The total number of </IFRAME>, TC.ClosingTags, TagNode elements found on the page. -
numClosedParagraphs
short numClosedParagraphs
The total number of </P>, TC.ClosingTags, TagNode elements found on the page. -
numClosedScripts
short numClosedScripts
The total number of </SCRIPT>, TC.ClosingTags, TagNode elements found on the page. -
numClosedSpans
short numClosedSpans
The total number of </SPAN>, TC.ClosingTags, TagNode elements found on the page. -
numClosedStyles
short numClosedStyles
The total number of </STYLE>, TC.ClosingTags, TagNode elements found on the page. -
numClosedTables
short numClosedTables
The total number of </TABLE>, TC.ClosingTags, TagNode elements found on the page. -
numCommentNodes
int numCommentNodes
The number ofHTMLNode'sin theVector<HTMLNode>that qualify as an"instanceof" CommentNode. -
numEmbed
short numEmbed
The total number of HTML <EMBED ...>'TagNode'elements found on this page.
NOTE: This is considered an HTML-5'Singleton'element, and thusly should only have an "Opening-Tag Version" of the Element. If there are (accidentally) closing-versions of this tag, they will not be counted byclass PageStats -
numHR
short numHR
The total number of HTML <HR>'TagNode'elements found on the page.
NOTE: This is considered an HTML-5'Singleton'element, and thusly should only have an "Opening-Tag Version" of the Element. If there are (accidentally) closing-versions of this tag, they will not be counted byclass PageStats -
numImages
short numImages
The total number of HTML <IMG ...>'TagNode'elements found on the page.
NOTE: This is considered an HTML-5'Singleton'element, and thusly should only have an "Opening-Tag Version" of the Element. If there are (accidentally) closing-versions of this tag, they will not be counted byclass PageStats -
numInput
short numInput
The total number of HTML <INPUT ...>'TagNode'elements found on the page.
NOTE: This is considered an HTML-5'Singleton'element, and thusly should only have an "Opening-Tag Version" of the Element. If there are (accidentally) closing-versions of this tag, they will not be counted byclass PageStats -
numLink
short numLink
The total number of HTML <LINK ...>'TagNode'elements found on the page.
NOTE: This is considered an HTML-5'Singleton'element, and thusly should only have an "Opening-Tag Version" of the Element. If there are (accidentally) closing-versions of this tag, they will not be counted byclass PageStats -
numMeta
short numMeta
The total number of HTML <META ...>'TagNode'elements found on the page.
NOTE: This is considered an HTML-5'Singleton'element, and thusly should only have an "Opening-Tag Version" of the Element. If there are (accidentally) closing-versions of this tag, they will not be counted byclass PageStats -
numNewLines
int numNewLines
This is the total number of new-line'\n'characters found inside anyTextNodepresent in the page-vector. -
numNodes
int numNodes
This is identical to the value returned by:pageVector.size() -
numOpenAnchors
short numOpenAnchors
The total number of <A> (Anchor), TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenDivs
short numOpenDivs
The total number of <DIV> (Divider), TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenForms
short numOpenForms
The total number of <FORM>, TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenFrames
short numOpenFrames
The total number of <FRAME>, TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenIFrames
short numOpenIFrames
The total number of <IFRAME>, TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenParagraphs
short numOpenParagraphs
The total number of <P> (Paragraph), TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenScripts
short numOpenScripts
The total number of <SCRIPT>, TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenSpans
short numOpenSpans
The total number of <SPAN>, TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenStyles
short numOpenStyles
The total number of <STYLE>, TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numOpenTables
short numOpenTables
The total number of <TABLE>, TC.OpeningTags, TagNode elements found on the page. Any element-internal attributes / inner-tags actually found inside the HTML element will just be ignored for the purposes of this count. -
numTagNodes
int numTagNodes
The number ofHTMLNode'sin theVector<HTMLNode>that qualify as an"instanceof" TagNode. -
numTextNodes
int numTextNodes
The number ofHTMLNode'sin theVector<HTMLNode>that qualify as an"instanceof" TextNode. -
strLength
int strLength
If a Vectorized HTML page were converted to a String, this would be the length of that string.
-
-
Class Torello.HTML.QuotesException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.ReplaceableException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.ReplaceableOutOfBoundsException extends ReplaceableException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
r
Replaceable r
-
-
Class Torello.HTML.ReplaceablesOverlappingException extends ReplaceableException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
r1
Replaceable r1
-
r2
Replaceable r2
-
-
Class Torello.HTML.ReplaceablesUnsortedException extends ReplaceableException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
r1
Replaceable r1
-
r2
Replaceable r2
-
-
Class Torello.HTML.ScrapeException extends java.lang.IllegalStateException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.SingletonException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.SRCException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.SubSection extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
html
java.util.Vector<HTMLNode> html
This public field identifies the actual nodes - the vectorized-html sub-list - that are included in this sub-section of an html web-page.- See Also:
HTMLNode
-
location
DotPair location
This public field identifies the sub-section location of a particular sub-section from a vectorized-html webpage. The location of the sub-page is specified by theclass DotPairpublic-fields:public final int 'start'andpublic final int 'end'- See Also:
DotPair
-
-
Class Torello.HTML.TagNode extends HTMLNode implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
isClosing
boolean isClosing
-
tok
java.lang.String tok
-
-
Class Torello.HTML.TagNodeExpectedException extends NodeExpectedException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.TagNodeIndex extends NodeIndex<TagNode> implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.TextNode extends HTMLNode implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.TextNodeExpectedException extends NodeExpectedException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.TextNodeIndex extends NodeIndex<TextNode> implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.HTML.NodeSearch
-
Class Torello.HTML.NodeSearch.CSSStrException extends TCCompareStrException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.NodeSearch.CursorException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
maxCursor
int maxCursor
This will contain the value formaxCursordefined in anHTML Node Iterator'ssettings for theCursor Bounds. -
minCursor
int minCursor
This will contain the value forminCursordefined in anHTML Node Iterator'ssettings for theCursor Bounds. -
pos
int pos
This will contain the value for passed to anHNLI Iterator'setter' method which was not within the bounds of the suppliedCursor Boundary Window.
-
-
Class Torello.HTML.NodeSearch.HTMLNotFoundException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.NodeSearch.InclusiveException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.NodeSearch.IteratorOutOfBoundsException extends java.lang.IndexOutOfBoundsException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.NodeSearch.SecondModificationException extends java.lang.IllegalStateException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.NodeSearch.TCCompareStrException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
compareStrVec
java.util.Vector<java.lang.String> compareStrVec
-
i
int i
This field is intended to store the index into the'compareStrVec'of the compare-Stringthat caused the exception throw in the first place.
-
-
-
Package Torello.HTML.Tools.Images
-
Class Torello.HTML.Tools.Images.ImageInfo extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
actualExtension
IF actualExtension
If the image has been properly converted, and is ready to be written to disk, this parameter will contain theIF/ image-format that was used to successfully save the image.
Note that often (but not always), this extension /IFinstance will be identical to the parameter'guessedImageFormat'. There will be cases, as mentioned above, when'guessImageFormat'is null. Furthermore, there may be (very rare) situations when an image-format for a particularURLwas incorrect, and was saved properly using a different format & extension. -
b64EncodedImage
java.lang.String b64EncodedImage
A web-page has the ability to inline (smaller) images directly into an HTML<IMG SRC=...>tag by encoding the picture into a Base-64String. TheStringis saved inside theSRC-Attribute of the<IMG>tag, and contains two separate sub-strings.
This is the second sub-string, and it is the text after translating the picture into Base-64 Encoded Text.
If the picture represented by this instance ofImageInfowas downloaded from aURL, then this field will be null, and theImageInfo.urlfield will contain the ImageURL. -
bufferedImage
java.awt.image.BufferedImage bufferedImage
The image, as an instance ofjava.awt.image.BufferedImage -
fileName
java.lang.String fileName
-
guessedExtension
IF guessedExtension
This shall help identify whether the image-in-question is aGIF, JPG, PNG, etc.... The field'guessedImageFormat'shall simply contain the image-type based on the extension found in theURL'sfile-name.
There are web-pages & web-sites that do not provide a file-name extension for the images they use on their page(s). In such cases, the downloader will eventually attempt to 'guess' the format of an image that has been downloaded. In these cases, this parameter will be passed null, and the parameteractualImageFormatwill contain the format that was actually used to successfully save the data to disk. -
height
int height
The value returned bybufferedImage.getHeight()- the downloaded image's height. -
imageFormatStr
java.lang.String imageFormatStr
A web-page has the ability to inline (smaller) images directly into an HTML<IMG SRC=...>tag by encoding the picture into a Base-64String. TheStringis saved inside theSRC-Attribute of the<IMG>tag, and contains two separate sub-strings.
This is the first sub-string, and it just identifies / lists the format (.jpg, .gif, .pngetc...) in which the picture was saved before translating it into Base-64 Encoded Text.
If the picture represented by this instance ofImageInfowas downloaded from aURL, then this field will be null, and theImageInfo.urlfield will contain the ImageURL. -
imgByteArr
byte[] imgByteArr
The image, as prepared for saving to disk. -
isB64EncodedImage
boolean isB64EncodedImage
If the image whose details are contained by this class-instance are from an image that was encoded using theString-literal Base-64 Encoding Algorithm, then this boolean flag will containTRUE.
An HTML<IMG SRC=...>Tag is the only way to enter a Base-64 Image into the Image-Scraper class. -
iteratorCounter
int iteratorCounter
Identifies the count in theIterator'sretrieval. Since thisintis used as an array-index pointer, it is initialized to'0'(zero). Specifically, if this method were called upon completion of three iterations of Image-URLretrieval, this counter would contain the integer'2'(two). -
successCounter
int successCounter
This identifies how many images have successfully downloaded, not the number of images for which a "download attempt" occurred. Since thisintis used as an array-index pointer, it is initialized to'0'(zero). If on the third iteration of the source-Iterator, anIOExceptionoccurred between the Java-Virtual-Machine and the internet, the following invocation of this method would havesuccessCounteras'2', but theiteratorCounterwould be'3'. -
url
java.net.URL url
TheURLthat was used to download the image. Note that anytime this instance ofImageInforepresents an image that was located on a web-page encoded using a Base-64String, then this field will be null, and the B-64 Fields will contain the relevant image data (not thisURL). -
width
int width
The value returned bybufferedImage.getWidth()- the downloaded image's width.
-
-
Class Torello.HTML.Tools.Images.ImageScraperException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.Tools.Images.NullImageException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.Tools.Images.Request extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
alwaysUseUserAgent
boolean alwaysUseUserAgent
-
b64Images
java.util.Vector<java.lang.String[]> b64Images
-
b64Pos
int b64Pos
-
counterPrinter
java.util.function.IntFunction<java.lang.String> counterPrinter
-
fileNamePrefix
java.lang.String fileNamePrefix
-
getImageFileSaveName
java.util.function.Function<ImageInfo,java.lang.String> getImageFileSaveName
-
imageReceiver
java.util.function.Consumer<ImageInfo> imageReceiver
-
keeperPredicate
java.util.function.Predicate<ImageInfo> keeperPredicate
-
maxDownloadWaitTime
long maxDownloadWaitTime
-
originalPageURL
java.net.URL originalPageURL
URLfrom whence this page has been downloaded -
retryWithUserAgent
boolean retryWithUserAgent
-
size
int size
The number of Image-URL'sidentified inside the'source'Iterable. -
skipBase64EncodedImages
boolean skipBase64EncodedImages
-
skipOnB64DecodeException
boolean skipOnB64DecodeException
-
skipOnDownloadException
boolean skipOnDownloadException
-
skipOnImageWritingFail
boolean skipOnImageWritingFail
-
skipOnNullImageException
boolean skipOnNullImageException
-
skipOnTimeOutException
boolean skipOnTimeOutException
-
skipOnUserLambdaException
boolean skipOnUserLambdaException
-
skipURL
java.util.function.Predicate<java.net.URL> skipURL
-
source
java.lang.Iterable<java.net.URL> source
-
tagNodeSRCExceptions
java.util.Vector<java.lang.Exception> tagNodeSRCExceptions
-
targetDirectory
java.lang.String targetDirectory
-
targetDirectoryRetriever
java.util.function.Function<ImageInfo,java.io.File> targetDirectoryRetriever
-
tnExPos
int tnExPos
-
urlPreProcessor
java.util.function.Function<java.net.URL,java.net.URL> urlPreProcessor
-
useDefaultCounterForImageFileNames
boolean useDefaultCounterForImageFileNames
-
userAgent
java.lang.String userAgent
-
verbosity
Verbosity verbosity
-
waitTimeUnits
java.util.concurrent.TimeUnit waitTimeUnits
-
-
Class Torello.HTML.Tools.Images.Results extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
b64EncodedImg
boolean[] b64EncodedImg
-
exceptions
java.lang.Exception[] exceptions
-
fileNames
java.lang.String[] fileNames
-
heights
int[] heights
-
imageFormats
IF[] imageFormats
-
pos
int pos
-
saveDirectories
java.lang.String[] saveDirectories
-
sizes
long[] sizes
-
skipped
boolean[] skipped
-
successCounter
int successCounter
-
urls
java.net.URL[] urls
-
widths
int[] widths
-
-
Class Torello.HTML.Tools.Images.UnrecognizedImageExtException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.HTML.Tools.NewsSite
-
Class Torello.HTML.Tools.NewsSite.Article extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
articleBody
java.util.Vector<HTMLNode> articleBody
This is the pared down article-body. It is what is retrieved fromclass ArticleGet -
imagePosArr
int[] imagePosArr
This list contains the "Image Positions" inside the vectorized-article for each image that was found inside the article. The easiest way to think about this field is that the following instructions were called on the article-body after downloading that article:int[] imagePosArr = TagNodeFind.all(page, TC.OpeningTags, "img"); -
imageURLs
java.util.Vector<java.net.URL> imageURLs
The image-URL's that were found in the news-article. The easiest way to think about this field is that the following instructions were called on the article-body after downloading the article:Vector<TagNode> imageNodes = TagNodeGet.all(article, TC.OpeningTags, "img"); Vector<URL> imageURLs = Links.resolveSRCs(imageNodes, articleURL); // The results of the above call are stored in this field / Vector<URL>. -
originalPage
java.util.Vector<HTMLNode> originalPage
This is the original, and complete, HTML vectorized-page download. It contains the original, un-modified, article download. -
originalPageStats
PageStats originalPageStats
This contains an instance ofclass PageStatsthat has been generated out of an original Newspaper Article Page.this.originalPageStats = new PageStats(originalPage); -
processedArticleStats
PageStats processedArticleStats
This contains an instance ofclass PageStatsthat has been generated from the post-processed Newspaper Article.this.processedArticleStats = new PageStats(articleBody); -
titleElement
java.lang.String titleElement
This is the title that was scraped from the main page. The title is the content of the<TITLE>...</TITLE>element on the article HTML page. -
url
java.net.URL url
This is the article's URL from the news website. -
wasErrorDownload
boolean wasErrorDownload
This should inform the user that an error occurred when downloading an article. If this field, after instantiation isTRUE, all other fields in this class should be thought of as "irrelevant."
-
-
Class Torello.HTML.Tools.NewsSite.ArticleGetException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
page
java.util.Vector<HTMLNode> page
If the code that has generated this exception has decided to pass the HTML page-Vectoras a parameter to the constructor it has used, when this exception is thrown, that page will be retained in thispublic, finalparameter. Not all four of the provided constructor's for this exception require thepageandurlbe preserved. If the throwing code has declined to provide this reference to the constructor, then the value of this'page'field will be null. -
url
java.net.URL url
If the code that has generated this exception has decided to pass the HTML page-URLas a parameter to the constructor it has used, when this exception is thrown, that page will be retained in thispublic, finalparameter. Not all four of the provided constructor's for this exception require the'page'and'URL'be preserved. If the throwing code has declined to provide this reference to the constructor, then the value of this'URL'field will be null.
-
-
Class Torello.HTML.Tools.NewsSite.NewsSite extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
articleGetter
ArticleGet articleGetter
An instance ofArticleGetused to retrieve news-articles from this site.- See Also:
ScrapeArticles
-
bannerAndAddFinder
StrFilter bannerAndAddFinder
An instance ofStrFilterfor finding banner's or ad's- See Also:
ScrapeArticles
-
country
Country country
Country of origin for the news-site in question -
description
java.lang.String description
A simple text description of the news web-site -
filter
URLFilter filter
- See Also:
ScrapeURLs
-
languageCode
LC languageCode
A Language Code instance for the web-site, if needed. -
linksGetter
LinksGet linksGetter
An instance ofLinksGetfor retrieving Article-URLlinks from a section page- See Also:
ScrapeURLs
-
sectionURLs
java.util.Vector<java.net.URL> sectionURLs
Should contain the complete list of news-sectionURL's -
siteName
java.lang.String siteName
A Simple Name for the news-site -
siteURL
java.net.URL siteURL
URLof the main-page for the news web-site
-
-
Class Torello.HTML.Tools.NewsSite.NewsSiteException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.Tools.NewsSite.PauseException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.HTML.Tools.NewsSite.ReceiveException extends java.io.IOException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
articleNum
int articleNum
This is theVector-index into the News Web-Site "Newspaper Article"Vectorfor theArticlethat was being processed byScrapedArticleReceiverwhen theReceiveExceptionwas thrown. -
sectionURLNum
int sectionURLNum
This is the News Web-Site "Section" that was being processed when thisReceiveExceptionwas thrown.
-
-
Class Torello.HTML.Tools.NewsSite.SectionURLException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.Java
-
Class Torello.Java.ArrayExpectedError extends ExceptionCheckError implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.CallableBodyException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.DirExpectedException extends FileNodeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fn
FileNode fn
Thispublic finalfield contains theFileNodethat caused an exception to throw.
-
-
Class Torello.Java.EmptyListException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.ExceptionCheckError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.FileExpectedException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fn
FileNode fn
This public final field contains theFileNodethat caused an exception to throw.
-
-
Class Torello.Java.FileNode extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
children
java.util.Vector<FileNode> children
This variable remains null for all instances of this class which represent 'files' on the underlying Operating-System, rather than 'directories.'
On the other hand, if'this'instance ofFileNoderepresents an MS-DOS, Unix, or Apple File-System directory, then this field will be constructed / instantiated and hold all file and sub-directoryFileNode-instances which contained by this directory. -
fileSize
long fileSize
When a tree is loaded into memory, the size of each file is saved in this variable. It can be retrieved (and even changed). -
isDirectory
boolean isDirectory
If'this'class-instance represents a directory in the BASH/UNIX or MS-DOS file system, this variable will beTRUE. When this field is set toFALSE, it means that'this'instance is a file. -
lastModified
long lastModified
When a tree is loaded into memory, the file-date of the file is saved in this variable. It can be retrieved. If theSecurityManager.checkRead(fileName)denies read access to the file, this field will equal zero.Time in Milli-Seconds: This field is a Java simple-type'long'which represents the time the file was last modified, measured in Milli-Seconds since the epoch(00:00:00 GMT, January 1, 1970). -
name
java.lang.String name
The name of the file or directory is saved/stored here -
parent
FileNode parent
The parent/container'FileNode'directory is saved here - like a pointer "tree".
-
-
Class Torello.Java.FileNodeException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.FileSizeException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fileSize
long fileSize
Thisfinalfield will contain the size of the file which generated this errror.
-
-
Class Torello.Java.FriendClassError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.JavaIdentifierException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.LV extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
end
int end
This integer represents the ending point of afor-loop. It is guaranteed to be consistent with theVectorthat was used with the constructor of this class. -
start
int start
This integer represents the starting point of afor-loop. It is guaranteed to be consistent with theVectorthat was used with the constructor of this class.
-
-
Class Torello.Java.NException extends java.lang.IndexOutOfBoundsException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.NoMatchException extends RegExException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.OSResponse extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
commandStr
java.lang.String commandStr
Maintains a copy of the command (as aString) that produced this instance -
errorOutput
java.lang.String errorOutput
Thispublic, final, Stringfield will contain a transcript of the text-characterdata that the Operating-System process sent toStandard-Error. -
response
int response
Thispublic, final, intfield will hold the "response code" reported by the operating-system. The response-code is a number returned by the invocation of the command to the OS. A value of-1usually signifies that the process terminated with errors. If this field contains a value ofShell.INTERRUPTED, it will mean that the process was interrupted. -
standardOutput
java.lang.String standardOutput
Thispublic, final, Stringfield will contain a transcript of the text-characterdata that the Operating-System process sent toStandard-Output.
-
-
Class Torello.Java.ParallelArrayException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.RegExException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.SameSourceAndTargetException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.ShouldHaveThrownException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.StrCmprException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
compareStrVec
java.util.Vector<java.lang.String> compareStrVec
This should contain the list of compare-String'spassed for a parameter list toclass StrCmpr. -
i
int i
This field is intended to store the index into thecompareStrVecof the compare-Stringthat caused the exception throw in the first place.
-
-
Class Torello.Java.StringFormatException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.ToDoException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.UnreachableError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.VarTypeAlreadyUsedException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.VarTypeParamException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.WritableDirectoryException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.WrongMethodException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.Java.Additional
-
Class Torello.Java.Additional.AppendableError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.ClassFileArrayException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.ConstantPoolError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.LRUTreeMap extends java.util.TreeMap<K,V> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
mapLRU
Torello.Java.Additional.LRUTreeMap.LRUTreeMaps mapLRU
Keeps a record of the 'Ordering of Use' for the elements in'this'map. The values stored here are set by a counter that increases with each use. -
MAX_NUM_ELEMENTS
int MAX_NUM_ELEMENTS
This is, literally, the maximum number of Key-Value pairs allowed into this instance ofLRUTreeMap. When an insert or'put'operation is made after the tree has reached this maximum size, it will remove the oldest element in the tree, first, before inserting the new addition(s)j.
-
-
Class Torello.Java.Additional.MultiType extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Ret0 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Ret1 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a
A a
This holds a pointer the first and only response object.
-
-
Class Torello.Java.Additional.Ret2 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Ret3 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Ret4 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Ret5 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
Class Torello.Java.Additional.Ret6 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a1
A1 a1
This holds a pointer the first response object. -
b2
B2 b2
This holds a pointer to the second response object. -
c3
C3 c3
This holds a pointer to the third response object. -
d4
D4 d4
This holds a pointer to the fourth response object. -
e5
E5 e5
This holds a pointer to the fifth response object. -
f6
F6 f6
This holds a pointer to the sixth response object.
-
-
Class Torello.Java.Additional.Ret7 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a1
A1 a1
This holds a pointer the first response object. -
b2
B2 b2
This holds a pointer to the second response object. -
c3
C3 c3
This holds a pointer to the third response object. -
d4
D4 d4
This holds a pointer to the fourth response object. -
e5
E5 e5
This holds a pointer to the fifth response object. -
f6
F6 f6
This holds a pointer to the sixth response object. -
g7
G7 g7
This holds a pointer to the seventh response object.
-
-
Class Torello.Java.Additional.Ret8 extends RetN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a1
A1 a1
This holds a pointer the first response object. -
b2
B2 b2
This holds a pointer to the second response object. -
c3
C3 c3
This holds a pointer to the third response object. -
d4
D4 d4
This holds a pointer to the fourth response object. -
e5
E5 e5
This holds a pointer to the fifth response object. -
f6
F6 f6
This holds a pointer to the sixth response object. -
g7
G7 g7
This holds a pointer to the seventh response object. -
h8
H8 h8
This holds a pointer to the seventh response object.
-
-
Class Torello.Java.Additional.RetN extends MultiType implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Tuple0 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Tuple1 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a
A a
This holds a pointer the first and only field / instance.
-
-
Class Torello.Java.Additional.Tuple2 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Tuple3 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Tuple4 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.Additional.Tuple5 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
Class Torello.Java.Additional.Tuple6 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a1
A1 a1
This holds a pointer the first field / instance. -
b2
B2 b2
This holds a pointer to the second field / instance. -
c3
C3 c3
This holds a pointer to the third field / instance. -
d4
D4 d4
This holds a pointer to the fourth field / instance. -
e5
E5 e5
This holds a pointer to the fifth field / instance. -
f6
F6 f6
This holds a pointer to the sixth field / instance.
-
-
Class Torello.Java.Additional.Tuple7 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a1
A1 a1
This holds a pointer the first field / instance. -
b2
B2 b2
This holds a pointer to the second field / instance. -
c3
C3 c3
This holds a pointer to the third field / instance. -
d4
D4 d4
This holds a pointer to the fourth field / instance. -
e5
E5 e5
This holds a pointer to the fifth field / instance. -
f6
F6 f6
This holds a pointer to the sixth field / instance. -
g7
G7 g7
This holds a pointer to the seventh field / instance.
-
-
Class Torello.Java.Additional.Tuple8 extends TupleN implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
a1
A1 a1
This holds a pointer the first field / instance. -
b2
B2 b2
This holds a pointer to the second field / instance. -
c3
C3 c3
This holds a pointer to the third field / instance. -
d4
D4 d4
This holds a pointer to the fourth field / instance. -
e5
E5 e5
This holds a pointer to the fifth field / instance. -
f6
F6 f6
This holds a pointer to the sixth field / instance. -
g7
G7 g7
This holds a pointer to the seventh field / instance. -
h8
H8 h8
This holds a pointer to the seventh field / instance.
-
-
Class Torello.Java.Additional.TupleN extends MultiType implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.Java.Build
-
Class Torello.Java.Build.BuildError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.Java.ReadOnly
-
Class Torello.Java.ReadOnly.AttemptedModificationException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.ReadOnly.ReadOnlyArrayList extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
arrayList
java.util.ArrayList<E> arrayList
-
fromBuilderOrArrayList
boolean fromBuilderOrArrayList
-
-
Class Torello.Java.ReadOnly.ReadOnlyHashMap extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.ReadOnly.ReadOnlyHashSet extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fromBuilderOrHashSet
boolean fromBuilderOrHashSet
-
hashSet
java.util.HashSet<E> hashSet
-
-
Class Torello.Java.ReadOnly.ReadOnlyHashtable extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.ReadOnly.ReadOnlyProperties extends ReadOnlyHashtable<java.lang.Object,java.lang.Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fromBuilderOrProperties
boolean fromBuilderOrProperties
-
properties
java.util.Properties properties
-
-
Class Torello.Java.ReadOnly.ReadOnlyTreeMap extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.Java.ReadOnly.ReadOnlyTreeSet extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fromBuilderOrTreeSet
boolean fromBuilderOrTreeSet
-
treeSet
java.util.TreeSet<E> treeSet
-
-
Class Torello.Java.ReadOnly.ReadOnlyVector extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
fromBuilderOrVector
boolean fromBuilderOrVector
-
vector
java.util.Vector<E> vector
-
-
Class Torello.Java.ReadOnly.ROArrayListBuilder extends java.util.ArrayList<E> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
Class Torello.Java.ReadOnly.ROHashMapBuilder extends java.util.HashMap<K,V> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
Class Torello.Java.ReadOnly.ROHashSetBuilder extends java.util.HashSet<E> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
Class Torello.Java.ReadOnly.ROHashtableBuilder extends java.util.Hashtable<K,V> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
Class Torello.Java.ReadOnly.ROPropertiesBuilder extends java.util.Properties implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
Class Torello.Java.ReadOnly.ROTreeMapBuilder extends java.util.TreeMap<K,V> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
Class Torello.Java.ReadOnly.ROTreeSetBuilder extends java.util.TreeSet<E> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
Class Torello.Java.ReadOnly.ROVectorBuilder extends java.util.Vector<E> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
built
boolean built
-
-
-
Package Torello.JavaDoc
-
Class Torello.JavaDoc.AnnotationElem extends Declaration implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
defaultValue
java.lang.String defaultValue
The default value assigned to this element. This may be null if there is no assigned default value. -
type
java.lang.String type
An Annotation-Element may only assume one of several types, as per the Java Sun / Oracle Documentation. The type must be one of the following, or a compile-time error occurs:- a primitive type
- String
- Class or an invocation of Class
- An enum type
- An annotation type
- An (1 dimensional) array type whose component type is one of the preceding types
-
typeJOW
java.lang.String typeJOW
-
-
Class Torello.JavaDoc.Callable extends Declaration implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
autoFindID
java.lang.String autoFindID
-
exceptions
ReadOnlyList<java.lang.String> exceptions
The names of allException, ErrorandThrowablethat may be thrown by thisConstructororMethod.
NOTE: Only exceptions which are included in the actualDeclaration.signature, inside the original'.java'source-file for thisCallablewill be listed in this array. -
parameterAnnotations
ReadOnlyList<ReadOnlyList<java.lang.String>> parameterAnnotations
Any parameters that are annotated will have the exact text-Stringof the annotations that were used in the source-code for that parameter stored in this two-dimensionalString[][]array.
This list will retrieve and contain the actual character data that may be found in the source-code file for an element in acom.sun.source'AST' (Abstract Syntax Tree). The list of annotations on a parameter (if any) will each be saved as ajava.lang.String.
Null Warning:
Unlike the other lists in classCallable, when there are no parameters for aCallabe, or when there are parameters, but none of them have been annotated, for the purposes of efficiency and better memory management, this field will simply be assigned null.
In almost all cases (particularly in the Java HTML Library), this two-dimensional list, itself, really will be null - since parameter annotations are quite uncommon. Perhaps, some users make use of them from time to time.
Parallel List:
This list must be considered a parallel list to the other parameter-related list:Callable.parameterNames,Callable.parameterTypesandCallable.parameterTypesJOW -
parameterNames
ReadOnlyList<java.lang.String> parameterNames
The names of all parameters to thisMethodorConstructor.
Parallel List:
This list must be considered a parallel list to the other parameter-related list:Callable.parameterTypes,Callable.parameterTypesJOWandCallable.parameterAnnotations -
parameterTypes
ReadOnlyList<java.lang.String> parameterTypes
This contains the types of the parameters, stored asString's. The contents of theseString'sdo include: package-name, containing classes (if inner-classes), and generic-parameter expressions (if generic-types). These names are as fully-qualified as the AST Parser allows.
JOW Alternative:
TheReadOnlyListCallable.parameterTypesJOWreduces these types (asString's) to a single-word. If aMethodor aConstructorthat accepts a paremeter such asjava.util.Iterable<Integer>, and it seems 'difficult to work with' - the entry inCallable.parameterTypesJOWat the same array-location would contain, simply, the JavaString 'Iterable'.
Parallel List:
This list must be considered a parallel list to the other parameter-related list:Callable.parameterNames,Callable.parameterTypesJOWandCallable.parameterAnnotations -
parameterTypesJOW
ReadOnlyList<java.lang.String> parameterTypesJOW
Parallel List:
This list must be considered a parallel list to the other parameter-related list:Callable.parameterNames,Callable.parameterTypesandCallable.parameterAnnotations
-
-
Class Torello.JavaDoc.Constructor extends Callable implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JavaDoc.CSSFiles extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
base64EncodedCSS
java.lang.String base64EncodedCSS
- See Also:
CSSFiles.COLORS_CSS_FILENAME
-
colorsCSS
java.lang.String colorsCSS
- See Also:
CSSFiles.COLORS_CSS_FILENAME
-
customizedCSS
java.lang.String customizedCSS
- See Also:
CSSFiles.CUSTOMIZED_CSS_FILENAME
-
listFramesCSS
java.lang.String listFramesCSS
- See Also:
CSSFiles.LIST_FRAMES_CSS_FILENAME
-
originalWidgetsCSS
java.lang.String originalWidgetsCSS
- See Also:
CSSFiles.JAVADOC_WIDGETS_CSS_FILENAME
-
pygmentsOrgCSS
java.lang.String pygmentsOrgCSS
- See Also:
CSSFiles.PYGMENTS_ORG_CSS_FILENAME
-
upgraderWidgetsCSS
java.lang.String upgraderWidgetsCSS
- See Also:
CSSFiles.UPGRADER_WIDGETS_CSS_FILENAME
-
userAccessoriesCSS
java.lang.String userAccessoriesCSS
- See Also:
CSSFiles.USER_WIDGETS_CSS_FILENAME
-
userAnnotationsCSS
java.lang.String userAnnotationsCSS
- See Also:
CSSFiles.USER_ANNOTATIONS_CSS_FILENAME
-
-
Class Torello.JavaDoc.Declaration extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
annotations
ReadOnlyList<java.lang.String> annotations
-
body
java.lang.String body
The Body of this 'Entity' (Field,Method,Constructor,EnumConstant,AnnotationElemorNestedType) as aString- if one exists.
If thisEntity/ Member (Field, Method, Constructoretc...) did not have a body, then this field'body'will benull.
The'body'of aMethodorConstructoris exactly the code that comprises it. If the method isabstract, then the method will not have a body, and in such cases this field will be null. If this member / entity is aFieldthen the body is the initializer of theField. Again, if there were no initializer for the field, then'body'would also be null. -
entity
Entity entity
This just stores the type ofEntitythis is. For sub-classes instances ofDeclarationwhich areMethod, this field will be equal toEntity.METHOD. For instances of theFieldsub-class, this will equalEntity.FIELD, and so on and so forth.
Mostly, this makes code easier to read when used along-side if-statements or switch-statements. This field somewhat akin toDeclaration.getClass()(when retrieving the specificDeclarationsub-class type).
Reminder:
Both this class, and sub-classCallableare declaredabstract, and only instances of Method, Field, Constructor, etc... can be instantiated. Only non-abstractimplementations of this class need to worry about assigning this field to any real-value. -
id
int id
For the purposes of passing these around to different parts of the code, every one of these are given a unique ID. This id is unique for a method, whether it was parsed from a detail or a summary section. This id is (probably) not useful outside of the HTML Processor Classes.
ID Clone:
If a subclass ofDeclarationis cloned, then thisidfield is also cloned / copied. -
jdComment
java.lang.String jdComment
The Java Doc Comment of this 'Entity' (Field,Method,Constructor,EnumConstant,AnnotationElemorNestedType) as aString- if one exists. The Java Doc Comment is the one defined directly above theDeclaration.
If thisEntity/ Member (Field, Method, Constructoretc...) did not have a Java Doc Comment placed on it, then this field'jdComment'will benull. -
jduAnnotationMirrors
EntityAnnotationMirrors jduAnnotationMirrors
-
location
Location location
Location instance that contains character-locations within the original Java Source-File -
modifiers
ReadOnlyList<java.lang.String> modifiers
The'modifiers'placed on thisDeclaration, includingString'ssuch as:public, static, finaletc... -
name
java.lang.String name
The Name of the javaField,Method,Constructor,EnumConstantorAnnotationElem. This will be a simple, standard 'Java Identifier'.
Note that the name of aConstructor(for-example) is always just the name of the class.
This field will never be null. -
signature
java.lang.String signature
The complete, declared Signature (as aString) of theMethod,Field,Constructor,EnumConstantorAnnotationElem.
This field would never be null.
-
-
Class Torello.JavaDoc.EnumConstant extends Declaration implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
paramExpressions
ReadOnlyList<java.lang.String> paramExpressions
The parameters passed to the constructor that constructed the enumerated-constant instance.
Many (or most)enum'sdo not actually use a constructor for their constants. Using a constructor is an extra-feature that allows additional information / data to be ascribed to the constant.
If no constructor has been used to buid an Enumerated Constant, then there (obviously) wouldn't be any expressions passed to a constructor for that constant. In such cases, this field will contain a non-null, empty,ReadOnlyList<String>.
-
-
Class Torello.JavaDoc.Field extends Declaration implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
definition
java.lang.String definition
The definition of this field, as aString. -
type
java.lang.String type
The type / class of this field, as aString. -
typeJOW
java.lang.String typeJOW
The type / class of this field, as aString.
-
-
Class Torello.JavaDoc.HiLiteException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JavaDoc.JavaDocHTMLFile extends ParsedFile implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
aeDetailsRemoved
boolean aeDetailsRemoved
Identifies if this Java Doc HTML Page has had it's Annotation-Element Details Removed -
allAEDetails
ReadOnlyList<ReflHTML<AnnotationElem>> allAEDetails
This is the list of all elements in the "Annotation Element Details", stored as Reflection-HTML instances -
allConstructorDetails
ReadOnlyList<ReflHTML<Constructor>> allConstructorDetails
This is the list of all constructors in the "Constructor Details", stored as Reflection-HTML instances -
allECDetails
ReadOnlyList<ReflHTML<EnumConstant>> allECDetails
This is the list of all constants in the "Enumerated Constant Details", stored as Reflection-HTML instances -
allFieldDetails
ReadOnlyList<ReflHTML<Field>> allFieldDetails
This is the list of all fields in the "Field Details", stored as Reflection-HTML instances -
allMethodDetails
ReadOnlyList<ReflHTML<Method>> allMethodDetails
This is the list of all methods in the "Method Details", stored as Reflection-HTML instances -
allNonNullSummaryTables
ReadOnlyList<SummaryTableHTML> allNonNullSummaryTables
all non-nullSummaryTableHTMLinstances -
constructorDetailsRemoved
boolean constructorDetailsRemoved
Identifies if this Java Doc HTML Page has had it's Constructor Details Removed -
constructorSummaryTable
SummaryTableHTML<Constructor> constructorSummaryTable
The HTML for a Constructor Summary Table -
dotDots
RelativePathStr dotDots
This provides the relative path-Stringfrom'this'Java Doc generated'.html'File to the root Java Doc Directory. -
ecDetailsRemoved
boolean ecDetailsRemoved
Identifies if this Java Doc HTML Page has had it's Enumeration Constant Details Removed -
ecSummaryTable
SummaryTableHTML<EnumConstant> ecSummaryTable
The HTML for an Enum-Constant Summary Table -
fieldDetailsRemoved
boolean fieldDetailsRemoved
Identifies if this Java Doc HTML Page has had it's Field Details Removed -
fieldSummaryTable
SummaryTableHTML<Field> fieldSummaryTable
The HTML for a Field Summary Table -
fileVec
java.util.Vector<HTMLNode> fileVec
Directory-Name of the Java-Doc Sub-Directory that -
headerFooter
HeaderFooterHTML headerFooter
The HTML that occurs directly above the Summary-Tables is the header. The HTML that is located below the Detail-Entries is the footer. -
hiLitedSrcFileURL
java.lang.String hiLitedSrcFileURL
This is the File-URLto use if a need to link to the corresponding"/hilite-files/"file is necessary.
This is a relative-URL that is relative to the file from the location where this Java Doc HTML File is located. Specifically, thisStringbegins with the text"/hilite-files/", followed by the type-name, and ending with the extension".java.html" -
javaDocPackageDirName
java.lang.String javaDocPackageDirName
Directory-Name of the Java-Doc Sub-Directory that contains this Java-Doc'.html'-File. This sub-directory should just be the name of the Root Java-Doc Directory, with this class' Full Package-Name appended to it.
If the JPMS (Java Platform Module System) has been used by a User-Project that contains multiple Java-Modules, then this directory shall also be pre-fixed with the relevant module containing this directory. -
javaDocPkgHiLitedSrcCodeDirName
java.lang.String javaDocPkgHiLitedSrcCodeDirName
Directory-Name of the Java-Doc Sub-Directory that contains the Hi-Lited Source-Code'.html'-Files for the Java-Classes which are included in the Java-Package to which this particular Java-Class belongs.
Unless instructed otherwise, the JDU spends effort to provide Syntax-HiLited'.html'-Files for each and every one of the Classes in a User's Java-Project. These files are each saved in the Hi-Lite Directory that is germaine / relevant for the given Java-Package to which the given Java-Class belongs. -
methodDetailsRemoved
boolean methodDetailsRemoved
Identifies if this Java Doc HTML Page has had it's Method Details Removed -
methodSummaryTable
SummaryTableHTML<Method> methodSummaryTable
The HTML for a Method Summary -
ntSummaryTable
SummaryTableHTML<NestedType> ntSummaryTable
The HTML for a Nested-Class (Inner-Class) Summary Table -
oaeSummaryTable
SummaryTableHTML<AnnotationElem> oaeSummaryTable
The HTML for an Optional Annotation Element Summary Table -
pkgSummaryHTML
PackageSummaryHTML pkgSummaryHTML
This is a reference to the parsed,'package-summary.html'File for the Project's 'Java-Package' to which this class belongs. -
raeSummaryTable
SummaryTableHTML<AnnotationElem> raeSummaryTable
The HTML for a Required Annotation Element Summary Table -
srcAsHTMLFileURL
java.lang.String srcAsHTMLFileURL
This is the File-URLto use if a need to link to the corresponding"/src-html/"file is necessary.
This is a relative-URL that contains the requisite number of 'dot-dots' to reach the file from the location where this Java Doc HTML File is located. -
updatedFileVec
java.util.Vector<HTMLNode> updatedFileVec
-
-
Class Torello.JavaDoc.Location extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bodyEndCol
int bodyEndCol
-
bodyEndLine
int bodyEndLine
-
bodyEndPos
int bodyEndPos
-
bodyStartCol
int bodyStartCol
-
bodyStartLine
int bodyStartLine
-
bodyStartPos
int bodyStartPos
-
jdcEndCol
int jdcEndCol
-
jdcEndLine
int jdcEndLine
-
jdcEndPos
int jdcEndPos
-
jdcStartCol
int jdcStartCol
-
jdcStartLine
int jdcStartLine
-
jdcStartPos
int jdcStartPos
-
signatureEndCol
int signatureEndCol
-
signatureEndLine
int signatureEndLine
-
signatureEndPos
int signatureEndPos
-
signatureStartCol
int signatureStartCol
-
signatureStartLine
int signatureStartLine
-
signatureStartPos
int signatureStartPos
-
-
Class Torello.JavaDoc.Method extends Callable implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
returnType
java.lang.String returnType
The return type of themethod, as aString. If this is a method with a'void'return-type, this shall be "void". -
returnTypeJOW
java.lang.String returnTypeJOW
The return type of themethod, as aString.
-
-
Class Torello.JavaDoc.NestedType extends Declaration implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
ciet
CIET ciet
Identifies whether this is a nested/inner Class, Interface, Enum, Annotation etc... -
extendedTypesJOW
ReadOnlyList<java.lang.String> extendedTypesJOW
-
fullyQualifiedName
java.lang.String fullyQualifiedName
This field is identical toNestedType.nameWithContainer, but also has the Package-Name prepended to it, if the Package-Name was present in the enclosing class''.java'file.
EXAMPLE: For Javajava.util.Map.Entry<K, V>, thefullyQualifiedNamewould be"java.util.Map.Entry". -
genericTypeParameters
ReadOnlyList<java.lang.String> genericTypeParameters
-
implementedTypesJOW
ReadOnlyList<java.lang.String> implementedTypesJOW
-
nameWithContainer
java.lang.String nameWithContainer
Thename-field (Declaration.name) of this class uses the lone Java-Identifier (Just One Word) which identifies thisNestedClasswithin the scope of the enclosing class. However,nameWithContaineris aStringthat also includes any / all enclosing-class names, each followed-by a'.'
EXAMPLE: For Javajava.util.Map.Entry<K, V>, thenameWithContainerwould be"Map.Entry".
Generic Type-Parameter information is not included in thisString, and neither is the Package-Name. -
numFields
int numFields
The number of fields that are defined in this inner-type -
numMethods
int numMethods
The number of methods defined in this inner-type -
packageName
java.lang.String packageName
The name of the package in which the enclosing-class of this nested-type is defined. This field will be null if the package was not found, or left blank as the 'default class'.
-
-
Class Torello.JavaDoc.PackageSummaryHTML extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bottomNavBar
SubSection bottomNavBar
-
description
SubSection description
-
head
SubSection head
-
packageName
java.lang.String packageName
The name of the Java Package represented by this instance. -
topNavBar
SubSection topNavBar
-
-
Class Torello.JavaDoc.ParsedFile extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
annotationElems
ReadOnlyList<AnnotationElem> annotationElems
-
ciet
CIET ciet
The acronym 'CIET' simply means "Class, Interface or Enumerated-Type. This public field identifies whether thisParsedFileis for a class, an interface or an enumerated-type. -
constructors
ReadOnlyList<Constructor> constructors
This is the list ofConstructorinstances identified by the parser for thisParsedFile -
containerClasses
ReadOnlyList<java.lang.String> containerClasses
This identifies inner classes and interfaces. For any class that is not an inner class, this will be a zero-lengthString[]array.'containerClasses'ValueInput CIET<EMPTY-LIST>interface java.lang.Integer<EMPTY-LIST>class java.util.Vector<E>{ "Base64" }class java.util.Base64.Decoder{ "Map" }interface java.util.Map.Entry<K, V> -
endLineNumber
int endLineNumber
The line-number in the source-code file where this class definition ends. Often this will just be the line-number of the last line in the'.java'file.
If this is a Nested-Type, this field will contain the line-number where the definition of the Nested-type ends. -
enumConstants
ReadOnlyList<EnumConstant> enumConstants
- See Also:
ParsedFile.enumConstants
-
fields
ReadOnlyList<Field> fields
This is the list ofFieldinstances identified by the parser for thisParsedFile -
fileName
java.lang.String fileName
Contains the file-name from which this instance was derived -
fullNameNoGenerics
java.lang.String fullNameNoGenerics
ThisString-Field holds the fully qualifiedCIETname - which simply means that any Java-Package information that is available shall be included in the name that is stored in this field. By implication, if the Package-Name is stored, then thisString-Field must also hold any Container-Class names for this CIET/Type - in cases where this type is, indeed, a nested or inner type.
If thisCIET-Type happens to be a Java Generic with Generic Type Parameters (the'E'in typejava.util.Vector<E>, this information WILL NOT include that text stored within thisString-Field.Output Value Input CIET/ Type"java.lang.Integer"interface java.lang.Integer"java.util.Vector"class java.util.Vector<E>"java.util.Base64.Decoder"class java.util.Base64.Decoder"java.util.Map.Entry"interface java.util.Map.Entry<K, V> -
genericParameters
ReadOnlyList<java.lang.String> genericParameters
If this represents a Java Generic Class or Interface, with generic type information, the generic type parameters shall be saved here. -
isGeneric
boolean isGeneric
This field will beTRUEanytime theParsedFile.genericParametersfield has any elements. -
isInner
boolean isInner
This identifies inner classes and interfaces.'isInner'Field ValueInput CIETfalseinterface java.lang.Integerfalseclass java.util.Vector<E>trueclass java.util.Base64.Decodertrueinterface java.util.Map.Entry<K, V> -
javaSrcFileAsStr
java.lang.String javaSrcFileAsStr
This field simply contains the entire contents of the'.java'Source-Code File from whence thisParsedFileinstance originated.
Note that for in for the sub-classJavaDocHTMLFile, when the HTML file which was parsed represents an inner-class / nested-type, this field will still contain the entire contents of the top-level enclosing java type (as aString) in this field.
For instance, if aJavaDocHTMLFile(which inherits this class,ParsedFile) instance had been generated for the Java-HTML inner-classTorello.HTML.Attributes.Filter, which happens to be a nested type of classTorello.HTML.Attributes, this field would contain the text-characters of the Source-FileTorello/HTML/Attributes.javainString-format (as character data). -
jdEndLineNumber
int jdEndLineNumber
The endiing line-number of the JavaDoc Comment at the top of the class. If this class does not have a Java-Doc Comment, this field will contain-1. -
jdStartLineNumber
int jdStartLineNumber
The starting line-number of the JavaDoc Comment at the top of the class. If this class does not have a Java-Doc Comment, this field will contain-1. -
methods
ReadOnlyList<Method> methods
This is the list ofMethodinstances identified by the parser for thisParsedFile -
nestedTypes
ReadOnlyList<NestedType> nestedTypes
This is the list ofNestedTypeinstances identified by the parser for thisParsedFile -
packageName
java.lang.String packageName
Holds the package-name. If thisParsedFilewere for classjava.lang.Stringthe'packageName'would be'java.lang'. -
simpleNameWithContainersAndGenerics
java.lang.String simpleNameWithContainersAndGenerics
Holds the name of a Class / CIET / Type. A'ParsedFile'represents a class, interface, or enumerated-type. This name stored in this field IS NOT the fully-qualified (Package-Name information included) name. The Java-Package in which this Class or Type resides isn't incorporated into the name stored in this field.
ThisString-Field will have any & all Generic Type Parameters appended to its name - if this CIET represents a generic with such Type-Parameters.
If thisCIET/Type represents a Nested-Class / Inner-Type, the names of the containingCIET/ Types are included in thisString-Field.Output Value Input CIET/ Type"Integer"interface java.lang.Integer"Vector<E>"class java.util.Vector<E>"Base.Decoder"class java.util.Base64.Decoder"Map.Entry<K, V>"interface java.util.Map.Entry<K, V> -
simpleNameWithPossibleContainers
java.lang.String simpleNameWithPossibleContainers
This the same as theParsedFile.simpleNameWithContainersAndGenericsfield, but leaves off the Generic Type-ParameterString's. If this class is representing aCIETType that happens to be a Nested-Type / Inner-Class, then the containingCIETname(s) ARE included in thisString-Field.Output Value Input CIET/ Type"Integer"interface java.lang.Integer"Vector"class java.util.Vector<E>"Base64.Decoder"class java.util.Base64.Decoder"Map.Entry"interface java.util.Map.Entry<K, V> -
startLineNumber
int startLineNumber
The line-number in the source-code file where this class definition actually begins.
Note that if this instance ofParsedFileis representing a Nessted-Type / Inner-Class, then this field will contain the line-number where that inner-type's definition begins inside the Enclosing-Class''.java'file. -
typeAnnotationMirrors
TypeAnnotationMirrors typeAnnotationMirrors
Stores information provided by the JavaDoc Upgrader Annotations. Note, this Annotation Mirror does not contain information about any / all annotations used inside of Java Source Code Files, but rather only the ones created by this API.
These include@StaticFunctionaland also@JDHeaderBackgroundImg -
typeLineCount
int typeLineCount
The number of lines of Source-Code inside this'.java'File. If this instance ofParsedFilerepresents an Inner-Type (Nested-Class), then this field will contain a value that corresponds only to the number of lines used by the Nested-Type within the context of the entire Enclosing-Class'.java'file. -
typeNameJOW
java.lang.String typeNameJOW
JOW: Just One Word
The Java-Doc Upgrader utilizes a few naming conventions, one of which is that any time the acronym'JOW'is used, it is intending to provide a name to a Java-Type. Since there isn't an exact consensus on what information should be included in a Type-Name, the'JOW'Acronym simply implies that the simplest name possible (a single word name) is being stored in this field.
If this name is representing aCIET-Type that happens to be a Java-Generic, and having Generic-Type Parameters, suchString-Text WILL NOT be included in thisString-Field.
If this name is representing aCIET-Type that happens to be a Nested-Type / Inner-Class, then the containingCIETname(s) ARE NOT included in thisString-Field.
Package-Name information will also not be stored in this field.Output Value Input CIET/ Type"Integer"interface java.lang.Integer"Vector"class java.util.Vector<E>"Decoder"class java.util.Base64.Decoder"Entry"interface java.util.Map.Entry<K, V> -
typeSizeChars
int typeSizeChars
The number of characters / bytes of Source-Code inside this'.java'File. If this instance ofParsedFilerepresents an Inner-Type (Nested-Class), then this field will contain a value that corresponds only to the number of characters / bytes used by the Nested-Type within the context of the entire Enclosing-Class'.java'file.
-
-
Class Torello.JavaDoc.ReflHTML extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
alreadyInvoked
boolean alreadyInvoked
-
detailNavBar
java.util.Vector<HTMLNode> detailNavBar
-
endingLI
TagNodeIndex endingLI
-
entity
ENTITY extends Declaration entity
This is the actual type-reflection (type-mirror) of theEntityextracted from the Java Doc'.html'web-page file, and from the'.java'Source Code File.
Since the type-parameterENTITYmust extendDeclaration, this field will hold all of the information that was parsed & extracted by Java Parser. Depending on what type of instance ofDeclarationthis represents, this will field will contain all of the parameter-names, parameter-types, modifiers, and exceptions that are associated with the entity.
This will take one of five type's:Method,Constructor,Field,EnumConstant,AnnotationElem. This allows you to retrieve all reflected information, quickly and easily, associated with the Java Doc HTML "Detail Section" for a particular method, field, constructor etc... -
entityAsEnum
Entity entityAsEnum
This is used as a 'faster-way' to retrieve what type of Entity this "Reference-HTML" detail-section is being represented here. This makes the code more readable than using Java's'getClass()'reflection to identify whether this 'Detail Section HTML' holds the HTML for a Method, Field, Constructor, Enumeration, etc...
The value in'entityAsEnum'shall always be identical to the type of theReflHTML.entity. So for instance, ifReflHTML.entitycontained aFieldinstance, this field would be equal toEntity.FIELD. If this entity represented aMethodHTML Detail-Section element, then this field would holdEntity.METHOD. -
fullNameNoGenerics
java.lang.String fullNameNoGenerics
This should contain the full-name of the CIET-Type. This is also a feature for debugging -
hiLitedCodeTNI
Replaceable hiLitedCodeTNI
-
htmlID
java.lang.String htmlID
Each Deteail Entity on a JavaDoc Page has a small and empty Anchor-Link, with an ID Attribute that allows the browser to redirect to the detail on a JavaDoc page using a relative URL to redirect to the details location on the web-page. If that detail element was found, it's will be stored in this field. (Otherwise, this field will contain null)
Below is the<A ID=..>generated by Java Doc for a method that is named'length', and takes zero parameters as input.<a id="length()"> <!-- --> </a> -
location
DotPair location
-
miscSimpleTagLabels
ReadOnlyList<TagNodeIndex> miscSimpleTagLabels
-
name
SubSection name
-
nameAsStr
java.lang.String nameAsStr
The should contain the simple name of this detail entity. This can be a handy feature when debugging.
If'this'Detail-Entity represented a method named with the signaturepublic void removeIt(String s), then this field would evaluate to "removeIt". -
needToAddOpenCloseDLsForHiLitedDetails
boolean needToAddOpenCloseDLsForHiLitedDetails
-
openingUL
TagNodeIndex openingUL
This points to the opening<UL>tag for the detail. It's contents may be modified to include CSS classes or id's. -
secondDescFromTypeLabel
boolean secondDescFromTypeLabel
This boolean indicates that the HTML description provided by this JavaDoc Detail has been copied from an parent-class or from an interface. In cases where an abstract method is implemented, the programmer may "opt-out" of typing anything about what the method's purpose is. If so, JavaDoc automatically copies the abstract (or parent) method's description, and leaves a little note saying so.
Note that when this occurs, there will by two HTML<DIV CLASS="block">elements on the page for that detail. -
signature
SubSection signature
-
subSections
java.util.TreeMap<java.lang.Character,SubSection> subSections
-
-
Class Torello.JavaDoc.Stats extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
globalTagsCount
ReadOnlyMap<java.lang.String,java.lang.Integer> globalTagsCount
-
globalTagsMap
ReadOnlyMap<java.lang.String,java.lang.String> globalTagsMap
-
numAnnotationElems
int numAnnotationElems
Maintains A count of the total number of annotation-elements found during the upgrade. -
numBytes
int numBytes
Maintains A count of the total number of bytes of'.java'files. -
numConstructors
int numConstructors
Maintains A count of the total number of constructors found during the upgrade. -
numDocumentedAnnotationElems
int numDocumentedAnnotationElems
A count of the total number of annotation-elements that were documented by Java Doc. -
numDocumentedConstructors
int numDocumentedConstructors
Maintains A count of the total number of constructors that were documented by Java Doc. -
numDocumentedEnumConstants
int numDocumentedEnumConstants
A count of the total number of annotation-elements that were documented by Java Doc. -
numDocumentedFields
int numDocumentedFields
Maintains A count of the total number of fields that were documented by Java Doc. -
numDocumentedMethods
int numDocumentedMethods
Maintains A count of the total number of methods that were documented by Java Doc. -
numEnumConstants
int numEnumConstants
Maintains A count of the total number of enum-constants found during the upgrade. -
numFields
int numFields
Maintains A count of the total number of fields found during the upgrade. -
numFinalConstructors
int numFinalConstructors
Maintains A count of the total number offinalconstructors found by the upgrader. -
numFinalFields
int numFinalFields
Maintains A count of the total number offinalfields found by the upgrader. -
numFinalMethods
int numFinalMethods
Maintains A count of the total number offinalmethods found by the upgrade. -
numHiLitedAnnotationElems
int numHiLitedAnnotationElems
A count of the total number of annotation-element declarations hilited by the upgrader. -
numHiLitedConstructors
int numHiLitedConstructors
Maintains A count of the total number of constructor bodies hilited by the upgrader. -
numHiLitedDivs
int numHiLitedDivs
Maintains A count of the total number of HiLited HTML<DIV>Elements. -
numHiLitedEnumConstants
int numHiLitedEnumConstants
A count of the total number of enumeration-constant declarations hilited by the upgrader. -
numHiLitedFields
int numHiLitedFields
Maintains A count of the total number of field declarations hilited by the upgrader. -
numHiLitedMethods
int numHiLitedMethods
Maintains A count of the total number of method bodies hilited by the upgrader. -
numLines
int numLines
Maintains A count of the total number of lines of'.java'files. -
numMethods
int numMethods
Maintains A count of the total number of methods found during the upgrade. -
numPrivateConstructors
int numPrivateConstructors
Maintains The total number ofprivateconstructors found during the upgrade. -
numPrivateFields
int numPrivateFields
Maintains The total number ofprivatefields found during the upgrade. -
numPrivateMethods
int numPrivateMethods
Maintains The total number ofprivatemethods found during the upgrade. -
numProtectedConstructors
int numProtectedConstructors
Maintains The total number ofprotectedconstructors found during the upgrade. -
numProtectedFields
int numProtectedFields
Maintains The total number ofprotectedfields found during the upgrade. -
numProtectedMethods
int numProtectedMethods
Maintains The total number ofprotectedmethods found during the upgrade. -
numPublicConstructors
int numPublicConstructors
Maintains A count of the total number ofpublicconstructors found by the upgrader. -
numPublicFields
int numPublicFields
Maintains A count of the total number ofpublicfields found by the upgrader. -
numPublicMethods
int numPublicMethods
Maintains A count of the total number ofpublicmethods found by the upgrader. -
numStaticFields
int numStaticFields
Maintains A count of the total number ofstaticfields found during the upgrade. -
numStaticMethods
int numStaticMethods
Maintains A count of the total number ofstaticmethods found during the upgrade. -
numTransientFields
int numTransientFields
Maintains A count of the total number oftransientfields found during the upgrade. -
numVolatileFields
int numVolatileFields
Maintains A count of the total number ofvolatilefields found during the upgrade. -
packageName
java.lang.String packageName
-
packageStatsMap
ReadOnlyMap<java.lang.String,Stats> packageStatsMap
-
packageTagsCount
ReadOnlyMap<java.lang.String,java.lang.Integer> packageTagsCount
-
packageTagsMap
ReadOnlyMap<java.lang.String,java.lang.String> packageTagsMap
-
-
Class Torello.JavaDoc.UpgradeException extends java.lang.IllegalArgumentException implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.JavaDoc.Messager
-
Class Torello.JavaDoc.Messager.AssertFail extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JavaDoc.Messager.MessagerGeneratedError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JavaDoc.Messager.ReachedMaxErrors extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.JavaDoc.SyntaxHiLite
-
Class Torello.JavaDoc.SyntaxHiLite.AbstractConfig extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
captureTheClassDummy
java.lang.Class<T extends AbstractConfig<T>> captureTheClassDummy
-
classNames
java.lang.String[] classNames
-
CONFIG_ARR_LEN
int CONFIG_ARR_LEN
-
quotes
SD quotes
-
spansOrBolds
boolean[] spansOrBolds
-
upperOrLower_ClassAttrName
boolean upperOrLower_ClassAttrName
-
upperOrLower_TagName
boolean upperOrLower_TagName
-
utilize
boolean[] utilize
-
-
Class Torello.JavaDoc.SyntaxHiLite.AbstractHiLiter extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JavaDoc.SyntaxHiLite.CacheError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JavaDoc.SyntaxHiLite.HiLiteHTML extends AbstractHiLiter implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
extraRules
ReadOnlyMap<java.lang.String,HiLiteHTML.AttribRule> extraRules
-
tags
Torello.JavaDoc.SyntaxHiLite.DoHiLiteHTML.TagsNonPWA tags
-
tpwa
Torello.JavaDoc.SyntaxHiLite.DoHiLiteHTML.TagsPWA tpwa
-
-
Class Torello.JavaDoc.SyntaxHiLite.HiLiteHTML.AttribRule extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
attributeName
java.lang.String attributeName
-
attributeName_ClassName
java.lang.String attributeName_ClassName
-
attributeValue_ClassName
java.lang.String attributeValue_ClassName
-
spanOrBold
boolean spanOrBold
-
-
Class Torello.JavaDoc.SyntaxHiLite.HiLiteHTML.Config extends AbstractConfig<HiLiteHTML.Config> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
rotmb
ROTreeMapBuilder<java.lang.String,HiLiteHTML.AttribRule> rotmb
-
-
Class Torello.JavaDoc.SyntaxHiLite.PygmentizeError extends java.lang.Error implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JavaDoc.SyntaxHiLite.PygmentizeException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package Torello.JSON
-
Class Torello.JSON.InvalidClassException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonArithmeticArrException extends JsonBindingArrException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonArithmeticObjException extends JsonBindingObjException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonBindingArrException extends JsonBindingException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
index
int index
This is the array index into the sourceJsonArraywhich contained the element (or lack-there-of) that has caused this exception.
-
-
Class Torello.JSON.JsonBindingException extends JsonException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorSourceJsonStruct
JsonStructure errorSourceJsonStruct
This contains the actualJsonStructure(which should either be an instance ofJsonObjectorJsonArray) which contained the array-element or object-property that has caused this exception throw. -
expectedJsonType
JsonValue.ValueType expectedJsonType
This contains the expected type which ought to have been found at the user-specifiedJsonArrayorJsonObjectlocation. Since both of these kinds ofJsonStructureare only allowed to have Json-Type's; therefore this field's declared type isJsonValue.ValueType.
ASIDE: The enumJsonValue.ValueTypehas two enum-constants which represent the Json-Type 'Boolean'. As a result, there are two possible values to which this field could be assigned to symbolize a Json Boolean Type (JsonValue.ValueType.FALSEandJsonValue.ValueType.TRUE). However, in Java HTML, a Json-Boolean Type will always be represented using theTRUEenum-constant. -
methodReturnJavaType
java.lang.Class<?> methodReturnJavaType
This specifies return type (as an instance ofjava.lang.Class<T>that is used by the method which has thrown this exception. This is the Java-Type to which the Json-Type was going to be assigned. -
valueRetrieved
JsonValue valueRetrieved
This is the value retrieved from theJsonArrayorJsonObject. If the value was not present or unavailable, then this parameter will, indeed, evaulated to Java-Null. If Json-Null was retrieved, then this parameter will containJsonValue.NULL.
-
-
Class Torello.JSON.JsonBindingObjException extends JsonBindingException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
propertyName
java.lang.String propertyName
TheJsonObjectproperty-name that has caused this exception to throw.
-
-
Class Torello.JSON.JsonBuildPOJOArrException extends JsonBindingArrException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonBuildPOJOObjException extends JsonBindingObjException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonNullArrException extends JsonBindingArrException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonNullObjException extends JsonBindingObjException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonNullPrimitiveArrException extends JsonBindingArrException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonNullPrimitiveObjException extends JsonBindingObjException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonPropMissingException extends JsonBindingObjException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonStrParseArrException extends JsonBindingArrException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
s
java.lang.String s
TheStringthat couldn't be properly parsed, and has caused this exception throw.
-
-
Class Torello.JSON.JsonStrParseObjException extends JsonBindingObjException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
s
java.lang.String s
TheStringthat has caused the exception.
-
-
Class Torello.JSON.JsonTypeArrException extends JsonBindingArrException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.JsonTypeObjException extends JsonBindingObjException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.RJArrSettingsError extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class Torello.JSON.WrongModeException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-