/**@class android.os.StrictMode.ViolationInfo
@extends java.lang.Object
Parcelable that gets sent in Binder call headers back to callers
to report violations that happened during a cross-process call.
@hide
*/
var ViolationInfo = {
/***/
message : "null",
/** Stack and other stuff info.
*/
crashInfo : "null",
/** The strict mode policy mask at the time of violation.
*/
policy : "null",
/** The wall time duration of the violation, when known. -1 when
not known.
*/
durationMillis : "null",
/** The number of animations currently running.
*/
numAnimationsRunning : "null",
/** List of tags from active Span instances during this
violation, or null for none.
*/
tags : "null",
/** Which violation number this was (1-based) since the last Looper loop,
from the perspective of the root caller (if it crossed any processes
via Binder calls). The value is 0 if the root caller wasn't on a Looper
thread.
*/
violationNumThisLoop : "null",
/** The time (in terms of SystemClock.uptimeMillis()) that the
violation occurred.
*/
violationUptimeMillis : "null",
/** The action of the Intent being broadcast to somebody's onReceive
on this thread right now, or null.
*/
broadcastIntentAction : "null",
/** If this is a instance count violation, the number of instances in memory,
else -1.
*/
numInstances : "null",
/**
*/
hashCode : function( ) {},
/**Save a ViolationInfo instance to a parcel.
*/
writeToParcel : function( ) {},
/**Dump a ViolationInfo instance to a Printer.
*/
dump : function( ) {},
};