SubscriberExceptionContext.java
1.06 KB
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
45
46
package com.google.common.eventbus;
import com.google.common.base.Preconditions;
import java.lang.reflect.Method;
public class SubscriberExceptionContext
{
private final EventBus a;
private final Object b;
private final Object c;
private final Method d;
SubscriberExceptionContext(EventBus paramEventBus, Object paramObject1, Object paramObject2, Method paramMethod)
{
this.a = ((EventBus)Preconditions.checkNotNull(paramEventBus));
this.b = Preconditions.checkNotNull(paramObject1);
this.c = Preconditions.checkNotNull(paramObject2);
this.d = ((Method)Preconditions.checkNotNull(paramMethod));
}
public Object getEvent()
{
return this.b;
}
public EventBus getEventBus()
{
return this.a;
}
public Object getSubscriber()
{
return this.c;
}
public Method getSubscriberMethod()
{
return this.d;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/google/common/eventbus/SubscriberExceptionContext.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/