Package Torello.Browser
Class Inspector.targetReloadedAfterCrash
- java.lang.Object
-
- Torello.Java.JSON.BaseType
-
- Torello.Browser.BrowserEvent
-
- Torello.Browser.Inspector.targetReloadedAfterCrash
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- Inspector
public static class Inspector.targetReloadedAfterCrash extends BrowserEvent implements java.io.Serializable
Fired when debugging target has reloaded after crash
This is Marker-Event. Marker-Event's are Events that do not posses any data, fields or state. When they are fired, only the event name is supplied.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Browser/Inspector.java
- Open New Browser-Tab: Torello/Browser/Inspector.java
File Size: 856 Bytes Line Count: 22 '\n' Characters Found
-
-
Field Summary
Fields Modifier and Type Field Description protected static long
serialVersionUID
For Object Serialization.-
Fields inherited from class Torello.Browser.BrowserEvent
domain, name, numFields
-
-
Constructor Summary
Constructors Constructor Description targetReloadedAfterCrash(JsonObject jo)
JSON Object Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean[]
optionals()
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.String
toString()
This method uses Java Reflection to convert the inheriting object into aString
.
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
For Object Serialization. java.io.Serializable- See Also:
- Constant Field Values
-
-
Constructor Detail
-
targetReloadedAfterCrash
public targetReloadedAfterCrash(JsonObject jo)
JSON Object Constructor
-
-
Method Detail
-
optionals
public boolean[] optionals()
Description copied from class:BaseType
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null. When binding aJsonObject
to a Java-Object, if some of the expected fields for the Java-Object map to Properties which might be left-out or omitted, then that may be indicated by setting that fields array positionTRUE
.
NOTE: This array should have a length equal to the number of fields contained by the Java Object. The first boolean in the array should specify whether the first Object Field may by absent. The second boolean should specify whether the second Object Field is optional in the JSON - and so on and so forth...
-
toString
-
-