j.java
750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.instabug.library.model;
import java.io.Serializable;
public class j
implements Serializable
{
private int a;
private String b;
private long c;
public j(int paramInt, String paramString, long paramLong)
{
this.a = paramInt;
this.b = paramString;
this.c = paramLong;
}
public int a()
{
return this.a;
}
public String b()
{
return this.b;
}
public long c()
{
return this.c;
}
public String toString()
{
return "id: " + a() + ", startedAt: " + this.b + ", duration: " + this.c;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/instabug/library/model/j.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/