List of usage examples for java.lang Thread.UncaughtExceptionHandler interface-usage
From source file com.atinternet.tracker.CrashDetectionHandler.java
class CrashDetectionHandler implements Thread.UncaughtExceptionHandler { /** * Key representing if the app crashed or not */ private static final String CRASH_DETECTION = "CrashDetection";
From source file com.opersys.fileexplorer.FileExplorerService.java
/** * Author: Franois-Denis Gonthier (francois-denis.gonthier@opersys.com) */ public class FileExplorerService extends Service implements Thread.UncaughtExceptionHandler, NodeThreadListener { private NodeKeepAliveSocketThread nodeKeepAliveThread;
From source file com.opersys.processexplorer.ProcessExplorerService.java
/** * Author: Franois-Denis Gonthier (francois-denis.gonthier@opersys.com) */ public class ProcessExplorerService extends Service implements Thread.UncaughtExceptionHandler, NodeThreadListener { class NodeProcessHandler extends Handler {
From source file com.yojiokisoft.globish1500.exception.MyUncaughtExceptionHandler.java
/** * ?????? */ public class MyUncaughtExceptionHandler implements Thread.UncaughtExceptionHandler { private static File sBugReportFile = null; private static String sVersionName;
From source file com.hippo.ehviewer.EhApplication.java
public class EhApplication extends SceneApplication implements Thread.UncaughtExceptionHandler { private static final String TAG = EhApplication.class.getSimpleName(); public static final boolean BETA = false;
From source file com.oltpbenchmark.ThreadBench.java
public class ThreadBench implements Thread.UncaughtExceptionHandler { private static final Logger LOG = Logger.getLogger(ThreadBench.class); private static BenchmarkState testState; private final List<? extends Worker> workers; private final ArrayList<Thread> workerThreads;
From source file org.acra.ErrorReporter.java
/**
* <p>
* The ErrorReporter is a Singleton object in charge of collecting crash context
* data and sending crash reports. It registers itself as the Application's
* Thread default {@link UncaughtExceptionHandler}.
* </p>
From source file ThreadTester.java
class SimpleThreadExceptionHandler implements Thread.UncaughtExceptionHandler { public void uncaughtException(Thread t, Throwable e) { System.err.printf("%s: %s at line %d of %s%n", t.getName(), e.toString(), e.getStackTrace()[0].getLineNumber(), e.getStackTrace()[0].getFileName()); }
From source file com.google.android.marvin.mytalkback.TalkBackService.java
/**
* An {@link AccessibilityService} that provides spoken, haptic, and audible
* feedback.
*
* @author alanv@google.com (Alan Viverette)
*/
From source file com.google.android.marvin.talkback.TalkBackService.java
/**
* An {@link AccessibilityService} that provides spoken, haptic, and audible
* feedback.
*
* @author alanv@google.com (Alan Viverette)
*/