public class

CrashData

extends Object
java.lang.Object
   ↳ android.server.data.CrashData

Class Overview

Crash data transfer object. Keep in sync. with the server side version.

Summary

Public Constructors
CrashData(String id, String activity, BuildData buildData, ThrowableData throwableData)
CrashData(String id, String activity, BuildData buildData, ThrowableData throwableData, byte[] state)
CrashData(DataInput in)
CrashData(String tag, Throwable throwable)
Public Methods
String getActivity()
BuildData getBuildData()
String getId()
byte[] getState()
ThrowableData getThrowableData()
long getTime()
String toString()
Return a brief description of this CrashData record.
void write(DataOutput out)
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public CrashData (String id, String activity, BuildData buildData, ThrowableData throwableData)

public CrashData (String id, String activity, BuildData buildData, ThrowableData throwableData, byte[] state)

public CrashData (DataInput in)

Throws
IOException

public CrashData (String tag, Throwable throwable)

Public Methods

public String getActivity ()

public BuildData getBuildData ()

public String getId ()

public byte[] getState ()

public ThrowableData getThrowableData ()

public long getTime ()

public String toString ()

Since: API Level

Return a brief description of this CrashData record. The details of the representation are subject to change.

Returns
  • Returns a String representing the contents of the object.

public void write (DataOutput out)

Throws
IOException