/**@class android.os.StrictMode.ThreadPolicy
@extends java.lang.Object

 {@link android.os.StrictMode} policy applied to a certain thread.

 <p>The policy is enabled by {@link #setThreadPolicy}.  The current policy
 can be retrieved with {@link #getThreadPolicy}.

 <p>Note that multiple penalties may be provided and they're run
 in order from least to most severe (logging before process
 death, for example).  There's currently no mechanism to choose
 different penalties for different detected actions.
*/
var ThreadPolicy = {

/** The default, lax policy which doesn't catch anything.
*/
LAX : "null",
/**
*/
toString : function(  ) {},


};