Package Torello.Browser
Class HeapProfiler.resetProfiles
- java.lang.Object
-
- Torello.Java.JSON.BaseType
-
- Torello.Browser.BrowserEvent
-
- Torello.Browser.HeapProfiler.resetProfiles
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- HeapProfiler
public static class HeapProfiler.resetProfiles extends BrowserEvent implements java.io.Serializable
-
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/HeapProfiler.java
- Open New Browser-Tab: Torello/Browser/HeapProfiler.java
File Size: 767 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 resetProfiles(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
-
resetProfiles
public resetProfiles(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
public java.lang.String toString()
-
-