Home | History | Annotate | Download | only in 2.4.0

META-INF/
META-INF/MANIFEST.MF
de/
de/greenrobot/
de/greenrobot/event/
de/greenrobot/event/AsyncPoster.class
AsyncPoster.java
package de.greenrobot.event
 de.greenrobot.event.AsyncPoster extends java.lang.Object implements java.lang.Runnable  {
	private final de.greenrobot.event.PendingPostQueue queue
	private final de.greenrobot.event.EventBus eventBus
	void  (de.greenrobot.event.EventBus) 
		de.greenrobot.event.EventBus eventBus
	public void enqueue (de.greenrobot.event.Subscription, java.lang.Object) 
		de.greenrobot.event.Subscription subscription
		Object event
		de.greenrobot.event.PendingPost pendingPost
	public void run () 
		de.greenrobot.event.PendingPost pendingPost
}

de/greenrobot/event/BackgroundPoster.class
BackgroundPoster.java
package de.greenrobot.event
final de.greenrobot.event.BackgroundPoster extends java.lang.Object implements java.lang.Runnable  {
	private final de.greenrobot.event.PendingPostQueue queue
	private final de.greenrobot.event.EventBus eventBus
	private volatile boolean executorRunning
	void  (de.greenrobot.event.EventBus) 
		de.greenrobot.event.EventBus eventBus
	public void enqueue (de.greenrobot.event.Subscription, java.lang.Object) 
		de.greenrobot.event.Subscription subscription
		Object event
		de.greenrobot.event.PendingPost pendingPost
	public void run () 
		de.greenrobot.event.PendingPost pendingPost
		InterruptedException e
}

de/greenrobot/event/EventBus$1.class
EventBus.java
package de.greenrobot.event
 de.greenrobot.event.EventBus$1 extends java.lang.ThreadLocal {
	final de.greenrobot.event.EventBus this$0
	void  (de.greenrobot.event.EventBus) 
	protected de.greenrobot.event.EventBus$PostingThreadState initialValue () 
	protected volatile java.lang.Object initialValue () 
}

de/greenrobot/event/EventBus$2.class
EventBus.java
package de.greenrobot.event
 de.greenrobot.event.EventBus$2 extends java.lang.Object {
	static final int[] $SwitchMap$de$greenrobot$event$ThreadMode
	static void  () 
		NoSuchFieldError ex
		NoSuchFieldError ex
		NoSuchFieldError ex
		NoSuchFieldError ex
}

de/greenrobot/event/EventBus$PostCallback.class
EventBus.java
package de.greenrobot.event
abstract de.greenrobot.event.EventBus$PostCallback extends java.lang.Object {
	public abstract void onPostCompleted (java.util.List) 
}

de/greenrobot/event/EventBus$PostingThreadState.class
EventBus.java
package de.greenrobot.event
final de.greenrobot.event.EventBus$PostingThreadState extends java.lang.Object {
	final java.util.List eventQueue
	boolean isPosting
	boolean isMainThread
	de.greenrobot.event.Subscription subscription
	Object event
	boolean canceled
	void  () 
}

de/greenrobot/event/EventBus.class
EventBus.java
package de.greenrobot.event
public de.greenrobot.event.EventBus extends java.lang.Object {
	public static String TAG
	static volatile de.greenrobot.event.EventBus defaultInstance
	private static final de.greenrobot.event.EventBusBuilder DEFAULT_BUILDER
	private static final java.util.Map eventTypesCache
	private final java.util.Map subscriptionsByEventType
	private final java.util.Map typesBySubscriber
	private final java.util.Map stickyEvents
	private final ThreadLocal currentPostingThreadState
	private final de.greenrobot.event.HandlerPoster mainThreadPoster
	private final de.greenrobot.event.BackgroundPoster backgroundPoster
	private final de.greenrobot.event.AsyncPoster asyncPoster
	private final de.greenrobot.event.SubscriberMethodFinder subscriberMethodFinder
	private final java.util.concurrent.ExecutorService executorService
	private final boolean throwSubscriberException
	private final boolean logSubscriberExceptions
	private final boolean logNoSubscriberMessages
	private final boolean sendSubscriberExceptionEvent
	private final boolean sendNoSubscriberEvent
	private final boolean eventInheritance
	public static de.greenrobot.event.EventBus getDefault () 
	public static de.greenrobot.event.EventBusBuilder builder () 
	public static void clearCaches () 
	public void  () 
	void  (de.greenrobot.event.EventBusBuilder) 
		de.greenrobot.event.EventBusBuilder builder
	public void register (java.lang.Object) 
		Object subscriber
	public void register (java.lang.Object, int) 
		Object subscriber
		int priority
	public void registerSticky (java.lang.Object) 
		Object subscriber
	public void registerSticky (java.lang.Object, int) 
		Object subscriber
		int priority
	private synchronized void register (java.lang.Object, boolean, int) 
		de.greenrobot.event.SubscriberMethod subscriberMethod
		java.util.Iterator i$
		Object subscriber
		boolean sticky
		int priority
		java.util.List subscriberMethods
	private void subscribe (java.lang.Object, de.greenrobot.event.SubscriberMethod, boolean, int) 
		int i
		Object stickyEvent
		Object subscriber
		de.greenrobot.event.SubscriberMethod subscriberMethod
		boolean sticky
		int priority
		Class eventType
		java.util.concurrent.CopyOnWriteArrayList subscriptions
		de.greenrobot.event.Subscription newSubscription
		int size
		java.util.List subscribedEvents
	public synchronized boolean isRegistered (java.lang.Object) 
		Object subscriber
	private void unubscribeByEventType (java.lang.Object, java.lang.Class) 
		de.greenrobot.event.Subscription subscription
		int i
		int size
		Object subscriber
		Class eventType
		java.util.List subscriptions
	public synchronized void unregister (java.lang.Object) 
		Class eventType
		java.util.Iterator i$
		Object subscriber
		java.util.List subscribedTypes
	public void post (java.lang.Object) 
		Object event
		de.greenrobot.event.EventBus$PostingThreadState postingState
		java.util.List eventQueue
	public void cancelEventDelivery (java.lang.Object) 
		Object event
		de.greenrobot.event.EventBus$PostingThreadState postingState
	public void postSticky (java.lang.Object) 
		Object event
	public java.lang.Object getStickyEvent (java.lang.Class) 
		Class eventType
	public java.lang.Object removeStickyEvent (java.lang.Class) 
		Class eventType
	public boolean removeStickyEvent (java.lang.Object) 
		Class eventType
		Object existingEvent
		Object event
	public void removeAllStickyEvents () 
	public boolean hasSubscriberForEvent (java.lang.Class) 
		Class clazz
		java.util.concurrent.CopyOnWriteArrayList subscriptions
		int h
		int countTypes
		Class eventClass
		java.util.List eventTypes
	private void postSingleEvent (java.lang.Object, de.greenrobot.event.EventBus$PostingThreadState)  throws java.lang.Error 
		Class clazz
		int h
		java.util.List eventTypes
		int countTypes
		Object event
		de.greenrobot.event.EventBus$PostingThreadState postingState
		Class eventClass
		boolean subscriptionFound
	private boolean postSingleEventForEventType (java.lang.Object, de.greenrobot.event.EventBus$PostingThreadState, java.lang.Class) 
		boolean aborted
		de.greenrobot.event.Subscription subscription
		java.util.Iterator i$
		Object event
		de.greenrobot.event.EventBus$PostingThreadState postingState
		Class eventClass
		java.util.concurrent.CopyOnWriteArrayList subscriptions
	private void postToSubscription (de.greenrobot.event.Subscription, java.lang.Object, boolean) 
		de.greenrobot.event.Subscription subscription
		Object event
		boolean isMainThread
	private java.util.List lookupAllEventTypes (java.lang.Class) 
		Class clazz
		java.util.List eventTypes
		Class eventClass
	static void addInterfaces (java.util.List, java.lang.Class[]) 
		Class interfaceClass
		Class[] arr$
		int len$
		int i$
		java.util.List eventTypes
		Class[] interfaces
	void invokeSubscriber (de.greenrobot.event.PendingPost) 
		de.greenrobot.event.PendingPost pendingPost
		Object event
		de.greenrobot.event.Subscription subscription
	void invokeSubscriber (de.greenrobot.event.Subscription, java.lang.Object) 
		java.lang.reflect.InvocationTargetException e
		IllegalAccessException e
		de.greenrobot.event.Subscription subscription
		Object event
	private void handleSubscriberException (de.greenrobot.event.Subscription, java.lang.Object, java.lang.Throwable) 
		de.greenrobot.event.SubscriberExceptionEvent exEvent
		de.greenrobot.event.SubscriberExceptionEvent exEvent
		de.greenrobot.event.Subscription subscription
		Object event
		Throwable cause
	java.util.concurrent.ExecutorService getExecutorService () 
	static void  () 
}

de/greenrobot/event/EventBusBuilder.class
EventBusBuilder.java
package de.greenrobot.event
public de.greenrobot.event.EventBusBuilder extends java.lang.Object {
	private static final java.util.concurrent.ExecutorService DEFAULT_EXECUTOR_SERVICE
	boolean logSubscriberExceptions
	boolean logNoSubscriberMessages
	boolean sendSubscriberExceptionEvent
	boolean sendNoSubscriberEvent
	boolean throwSubscriberException
	boolean eventInheritance
	java.util.concurrent.ExecutorService executorService
	java.util.List skipMethodVerificationForClasses
	void  () 
	public de.greenrobot.event.EventBusBuilder logSubscriberExceptions (boolean) 
		boolean logSubscriberExceptions
	public de.greenrobot.event.EventBusBuilder logNoSubscriberMessages (boolean) 
		boolean logNoSubscriberMessages
	public de.greenrobot.event.EventBusBuilder sendSubscriberExceptionEvent (boolean) 
		boolean sendSubscriberExceptionEvent
	public de.greenrobot.event.EventBusBuilder sendNoSubscriberEvent (boolean) 
		boolean sendNoSubscriberEvent
	public de.greenrobot.event.EventBusBuilder throwSubscriberException (boolean) 
		boolean throwSubscriberException
	public de.greenrobot.event.EventBusBuilder eventInheritance (boolean) 
		boolean eventInheritance
	public de.greenrobot.event.EventBusBuilder executorService (java.util.concurrent.ExecutorService) 
		java.util.concurrent.ExecutorService executorService
	public de.greenrobot.event.EventBusBuilder skipMethodVerificationFor (java.lang.Class) 
		Class clazz
	public de.greenrobot.event.EventBus installDefaultEventBus () 
	public de.greenrobot.event.EventBus build () 
	static void  () 
}

de/greenrobot/event/EventBusException.class
EventBusException.java
package de.greenrobot.event
public de.greenrobot.event.EventBusException extends java.lang.RuntimeException {
	private static final long serialVersionUID
	public void  (java.lang.String) 
		String detailMessage
	public void  (java.lang.Throwable) 
		Throwable throwable
	public void  (java.lang.String, java.lang.Throwable) 
		String detailMessage
		Throwable throwable
}

de/greenrobot/event/HandlerPoster.class
HandlerPoster.java
package de.greenrobot.event
final de.greenrobot.event.HandlerPoster extends android.os.Handler {
	private final de.greenrobot.event.PendingPostQueue queue
	private final int maxMillisInsideHandleMessage
	private final de.greenrobot.event.EventBus eventBus
	private boolean handlerActive
	void  (de.greenrobot.event.EventBus, android.os.Looper, int) 
		de.greenrobot.event.EventBus eventBus
		android.os.Looper looper
		int maxMillisInsideHandleMessage
	void enqueue (de.greenrobot.event.Subscription, java.lang.Object) 
		de.greenrobot.event.Subscription subscription
		Object event
		de.greenrobot.event.PendingPost pendingPost
	public void handleMessage (android.os.Message) 
		de.greenrobot.event.PendingPost pendingPost
		long timeInMethod
		long started
		android.os.Message msg
		boolean rescheduled
}

de/greenrobot/event/NoSubscriberEvent.class
NoSubscriberEvent.java
package de.greenrobot.event
public final de.greenrobot.event.NoSubscriberEvent extends java.lang.Object {
	public final de.greenrobot.event.EventBus eventBus
	public final Object originalEvent
	public void  (de.greenrobot.event.EventBus, java.lang.Object) 
		de.greenrobot.event.EventBus eventBus
		Object originalEvent
}

de/greenrobot/event/PendingPost.class
PendingPost.java
package de.greenrobot.event
final de.greenrobot.event.PendingPost extends java.lang.Object {
	private static final java.util.List pendingPostPool
	Object event
	de.greenrobot.event.Subscription subscription
	de.greenrobot.event.PendingPost next
	private void  (java.lang.Object, de.greenrobot.event.Subscription) 
		Object event
		de.greenrobot.event.Subscription subscription
	static de.greenrobot.event.PendingPost obtainPendingPost (de.greenrobot.event.Subscription, java.lang.Object) 
		de.greenrobot.event.PendingPost pendingPost
		int size
		de.greenrobot.event.Subscription subscription
		Object event
	static void releasePendingPost (de.greenrobot.event.PendingPost) 
		de.greenrobot.event.PendingPost pendingPost
	static void  () 
}

de/greenrobot/event/PendingPostQueue.class
PendingPostQueue.java
package de.greenrobot.event
final de.greenrobot.event.PendingPostQueue extends java.lang.Object {
	private de.greenrobot.event.PendingPost head
	private de.greenrobot.event.PendingPost tail
	void  () 
	synchronized void enqueue (de.greenrobot.event.PendingPost) 
		de.greenrobot.event.PendingPost pendingPost
	synchronized de.greenrobot.event.PendingPost poll () 
		de.greenrobot.event.PendingPost pendingPost
	synchronized de.greenrobot.event.PendingPost poll (int)  throws java.lang.InterruptedException 
		int maxMillisToWait
}

de/greenrobot/event/SubscriberExceptionEvent.class
SubscriberExceptionEvent.java
package de.greenrobot.event
public final de.greenrobot.event.SubscriberExceptionEvent extends java.lang.Object {
	public final de.greenrobot.event.EventBus eventBus
	public final Throwable throwable
	public final Object causingEvent
	public final Object causingSubscriber
	public void  (de.greenrobot.event.EventBus, java.lang.Throwable, java.lang.Object, java.lang.Object) 
		de.greenrobot.event.EventBus eventBus
		Throwable throwable
		Object causingEvent
		Object causingSubscriber
}

de/greenrobot/event/SubscriberMethod.class
SubscriberMethod.java
package de.greenrobot.event
final de.greenrobot.event.SubscriberMethod extends java.lang.Object {
	final java.lang.reflect.Method method
	final de.greenrobot.event.ThreadMode threadMode
	final Class eventType
	String methodString
	void  (java.lang.reflect.Method, de.greenrobot.event.ThreadMode, java.lang.Class) 
		java.lang.reflect.Method method
		de.greenrobot.event.ThreadMode threadMode
		Class eventType
	public boolean equals (java.lang.Object) 
		de.greenrobot.event.SubscriberMethod otherSubscriberMethod
		Object other
	private synchronized void checkMethodString () 
		StringBuilder builder
	public int hashCode () 
}

de/greenrobot/event/SubscriberMethodFinder.class
SubscriberMethodFinder.java
package de.greenrobot.event
 de.greenrobot.event.SubscriberMethodFinder extends java.lang.Object {
	private static final String ON_EVENT_METHOD_NAME
	private static final int BRIDGE
	private static final int SYNTHETIC
	private static final int MODIFIERS_IGNORE
	private static final java.util.Map methodCache
	private final java.util.Map skipMethodVerificationForClasses
	void  (java.util.List) 
		Class clazz
		java.util.Iterator i$
		java.util.List skipMethodVerificationForClassesList
	java.util.List findSubscriberMethods (java.lang.Class) 
		de.greenrobot.event.ThreadMode threadMode
		de.greenrobot.event.ThreadMode threadMode
		de.greenrobot.event.ThreadMode threadMode
		de.greenrobot.event.ThreadMode threadMode
		String modifierString
		de.greenrobot.event.ThreadMode threadMode
		Class eventType
		String methodKey
		Class[] parameterTypes
		int modifiers
		String methodName
		java.lang.reflect.Method method
		java.lang.reflect.Method[] arr$
		int len$
		int i$
		String name
		java.lang.reflect.Method[] methods
		Class subscriberClass
		String key
		java.util.List subscriberMethods
		Class clazz
		java.util.HashSet eventTypesFound
		StringBuilder methodKeyBuilder
	static void clearCaches () 
	static void  () 
}

de/greenrobot/event/Subscription.class
Subscription.java
package de.greenrobot.event
final de.greenrobot.event.Subscription extends java.lang.Object {
	final Object subscriber
	final de.greenrobot.event.SubscriberMethod subscriberMethod
	final int priority
	volatile boolean active
	void  (java.lang.Object, de.greenrobot.event.SubscriberMethod, int) 
		Object subscriber
		de.greenrobot.event.SubscriberMethod subscriberMethod
		int priority
	public boolean equals (java.lang.Object) 
		de.greenrobot.event.Subscription otherSubscription
		Object other
	public int hashCode () 
}

de/greenrobot/event/ThreadMode.class
ThreadMode.java
package de.greenrobot.event
public final de.greenrobot.event.ThreadMode extends java.lang.Enum {
	public static final de.greenrobot.event.ThreadMode PostThread
	public static final de.greenrobot.event.ThreadMode MainThread
	public static final de.greenrobot.event.ThreadMode BackgroundThread
	public static final de.greenrobot.event.ThreadMode Async
	private static final de.greenrobot.event.ThreadMode[] $VALUES
	public static de.greenrobot.event.ThreadMode[] values () 
	public static de.greenrobot.event.ThreadMode valueOf (java.lang.String) 
		String name
	private void  (java.lang.String, int) 
	static void  () 
}

de/greenrobot/event/util/
de/greenrobot/event/util/AsyncExecutor$1.class
AsyncExecutor.java
package de.greenrobot.event.util
 de.greenrobot.event.util.AsyncExecutor$1 extends java.lang.Object implements java.lang.Runnable  {
	final de.greenrobot.event.util.AsyncExecutor$RunnableEx val$runnable
	final de.greenrobot.event.util.AsyncExecutor this$0
	void  (de.greenrobot.event.util.AsyncExecutor, de.greenrobot.event.util.AsyncExecutor$RunnableEx) 
	public void run () 
		Exception e1
		Object event
		Exception e
}

de/greenrobot/event/util/AsyncExecutor$Builder.class
AsyncExecutor.java
package de.greenrobot.event.util
public de.greenrobot.event.util.AsyncExecutor$Builder extends java.lang.Object {
	private java.util.concurrent.Executor threadPool
	private Class failureEventType
	private de.greenrobot.event.EventBus eventBus
	private void  () 
	public de.greenrobot.event.util.AsyncExecutor$Builder threadPool (java.util.concurrent.Executor) 
		java.util.concurrent.Executor threadPool
	public de.greenrobot.event.util.AsyncExecutor$Builder failureEventType (java.lang.Class) 
		Class failureEventType
	public de.greenrobot.event.util.AsyncExecutor$Builder eventBus (de.greenrobot.event.EventBus) 
		de.greenrobot.event.EventBus eventBus
	public de.greenrobot.event.util.AsyncExecutor build () 
	public de.greenrobot.event.util.AsyncExecutor buildForActivityScope (android.app.Activity) 
		android.app.Activity activity
	public de.greenrobot.event.util.AsyncExecutor buildForScope (java.lang.Object) 
		Object executionContext
	void  (de.greenrobot.event.util.AsyncExecutor$1) 
		de.greenrobot.event.util.AsyncExecutor$1 x0
}

de/greenrobot/event/util/AsyncExecutor$RunnableEx.class
AsyncExecutor.java
package de.greenrobot.event.util
public abstract de.greenrobot.event.util.AsyncExecutor$RunnableEx extends java.lang.Object {
	public abstract void run ()  throws java.lang.Exception 
}

de/greenrobot/event/util/AsyncExecutor.class
AsyncExecutor.java
package de.greenrobot.event.util
public de.greenrobot.event.util.AsyncExecutor extends java.lang.Object {
	private final java.util.concurrent.Executor threadPool
	private final java.lang.reflect.Constructor failureEventConstructor
	private final de.greenrobot.event.EventBus eventBus
	private final Object scope
	public static de.greenrobot.event.util.AsyncExecutor$Builder builder () 
	public static de.greenrobot.event.util.AsyncExecutor create () 
	private void  (java.util.concurrent.Executor, de.greenrobot.event.EventBus, java.lang.Class, java.lang.Object) 
		NoSuchMethodException e
		java.util.concurrent.Executor threadPool
		de.greenrobot.event.EventBus eventBus
		Class failureEventType
		Object scope
	public void execute (de.greenrobot.event.util.AsyncExecutor$RunnableEx) 
		de.greenrobot.event.util.AsyncExecutor$RunnableEx runnable
	void  (java.util.concurrent.Executor, de.greenrobot.event.EventBus, java.lang.Class, java.lang.Object, de.greenrobot.event.util.AsyncExecutor$1) 
		java.util.concurrent.Executor x0
		de.greenrobot.event.EventBus x1
		Class x2
		Object x3
		de.greenrobot.event.util.AsyncExecutor$1 x4
	static java.lang.reflect.Constructor access$200 (de.greenrobot.event.util.AsyncExecutor) 
		de.greenrobot.event.util.AsyncExecutor x0
	static java.lang.Object access$300 (de.greenrobot.event.util.AsyncExecutor) 
		de.greenrobot.event.util.AsyncExecutor x0
	static de.greenrobot.event.EventBus access$400 (de.greenrobot.event.util.AsyncExecutor) 
		de.greenrobot.event.util.AsyncExecutor x0
}

de/greenrobot/event/util/ErrorDialogConfig.class
ErrorDialogConfig.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogConfig extends java.lang.Object {
	final android.content.res.Resources resources
	final int defaultTitleId
	final int defaultErrorMsgId
	final de.greenrobot.event.util.ExceptionToResourceMapping mapping
	de.greenrobot.event.EventBus eventBus
	boolean logExceptions
	String tagForLoggingExceptions
	int defaultDialogIconId
	Class defaultEventTypeOnDialogClosed
	public void  (android.content.res.Resources, int, int) 
		android.content.res.Resources resources
		int defaultTitleId
		int defaultMsgId
	public de.greenrobot.event.util.ErrorDialogConfig addMapping (java.lang.Class, int) 
		Class clazz
		int msgId
	public int getMessageIdForThrowable (java.lang.Throwable) 
		Throwable throwable
		Integer resId
	public void setDefaultDialogIconId (int) 
		int defaultDialogIconId
	public void setDefaultEventTypeOnDialogClosed (java.lang.Class) 
		Class defaultEventTypeOnDialogClosed
	public void disableExceptionLogging () 
	public void setTagForLoggingExceptions (java.lang.String) 
		String tagForLoggingExceptions
	public void setEventBus (de.greenrobot.event.EventBus) 
		de.greenrobot.event.EventBus eventBus
	de.greenrobot.event.EventBus getEventBus () 
}

de/greenrobot/event/util/ErrorDialogFragmentFactory$Honeycomb.class
ErrorDialogFragmentFactory.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogFragmentFactory$Honeycomb extends de.greenrobot.event.util.ErrorDialogFragmentFactory {
	public void  (de.greenrobot.event.util.ErrorDialogConfig) 
		de.greenrobot.event.util.ErrorDialogConfig config
	protected android.app.Fragment createErrorFragment (de.greenrobot.event.util.ThrowableFailureEvent, android.os.Bundle) 
		de.greenrobot.event.util.ThrowableFailureEvent event
		android.os.Bundle arguments
		de.greenrobot.event.util.ErrorDialogFragments$Honeycomb errorFragment
	protected volatile java.lang.Object createErrorFragment (de.greenrobot.event.util.ThrowableFailureEvent, android.os.Bundle) 
		de.greenrobot.event.util.ThrowableFailureEvent x0
		android.os.Bundle x1
}

de/greenrobot/event/util/ErrorDialogFragmentFactory$Support.class
ErrorDialogFragmentFactory.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogFragmentFactory$Support extends de.greenrobot.event.util.ErrorDialogFragmentFactory {
	public void  (de.greenrobot.event.util.ErrorDialogConfig) 
		de.greenrobot.event.util.ErrorDialogConfig config
	protected android.support.v4.app.Fragment createErrorFragment (de.greenrobot.event.util.ThrowableFailureEvent, android.os.Bundle) 
		de.greenrobot.event.util.ThrowableFailureEvent event
		android.os.Bundle arguments
		de.greenrobot.event.util.ErrorDialogFragments$Support errorFragment
	protected volatile java.lang.Object createErrorFragment (de.greenrobot.event.util.ThrowableFailureEvent, android.os.Bundle) 
		de.greenrobot.event.util.ThrowableFailureEvent x0
		android.os.Bundle x1
}

de/greenrobot/event/util/ErrorDialogFragmentFactory.class
ErrorDialogFragmentFactory.java
package de.greenrobot.event.util
public abstract de.greenrobot.event.util.ErrorDialogFragmentFactory extends java.lang.Object {
	protected final de.greenrobot.event.util.ErrorDialogConfig config
	protected void  (de.greenrobot.event.util.ErrorDialogConfig) 
		de.greenrobot.event.util.ErrorDialogConfig config
	protected java.lang.Object prepareErrorFragment (de.greenrobot.event.util.ThrowableFailureEvent, boolean, android.os.Bundle) 
		android.os.Bundle bundle
		String title
		String message
		de.greenrobot.event.util.ThrowableFailureEvent event
		boolean finishAfterDialog
		android.os.Bundle argumentsForErrorDialog
		android.os.Bundle bundle
	protected abstract java.lang.Object createErrorFragment (de.greenrobot.event.util.ThrowableFailureEvent, android.os.Bundle) 
	protected java.lang.String getTitleFor (de.greenrobot.event.util.ThrowableFailureEvent, android.os.Bundle) 
		de.greenrobot.event.util.ThrowableFailureEvent event
		android.os.Bundle arguments
	protected java.lang.String getMessageFor (de.greenrobot.event.util.ThrowableFailureEvent, android.os.Bundle) 
		de.greenrobot.event.util.ThrowableFailureEvent event
		android.os.Bundle arguments
		int msgResId
}

de/greenrobot/event/util/ErrorDialogFragments$Honeycomb.class
ErrorDialogFragments.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogFragments$Honeycomb extends android.app.DialogFragment implements android.content.DialogInterface$OnClickListener  {
	public void  () 
	public android.app.Dialog onCreateDialog (android.os.Bundle) 
		android.os.Bundle savedInstanceState
	public void onClick (android.content.DialogInterface, int) 
		android.content.DialogInterface dialog
		int which
}

de/greenrobot/event/util/ErrorDialogFragments$Support.class
ErrorDialogFragments.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogFragments$Support extends android.support.v4.app.DialogFragment implements android.content.DialogInterface$OnClickListener  {
	public void  () 
	public android.app.Dialog onCreateDialog (android.os.Bundle) 
		android.os.Bundle savedInstanceState
	public void onClick (android.content.DialogInterface, int) 
		android.content.DialogInterface dialog
		int which
}

de/greenrobot/event/util/ErrorDialogFragments.class
ErrorDialogFragments.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogFragments extends java.lang.Object {
	public static int ERROR_DIALOG_ICON
	public static Class EVENT_TYPE_ON_CLICK
	public void  () 
	public static android.app.Dialog createDialog (android.content.Context, android.os.Bundle, android.content.DialogInterface$OnClickListener) 
		android.content.Context context
		android.os.Bundle arguments
		android.content.DialogInterface$OnClickListener onClickListener
		android.app.AlertDialog$Builder builder
	public static void handleOnClick (android.content.DialogInterface, int, android.app.Activity, android.os.Bundle) 
		Exception e
		Object event
		de.greenrobot.event.EventBus eventBus
		android.content.DialogInterface dialog
		int which
		android.app.Activity activity
		android.os.Bundle arguments
		boolean finish
	static void  () 
}

de/greenrobot/event/util/ErrorDialogManager$HoneycombManagerFragment.class
ErrorDialogManager.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogManager$HoneycombManagerFragment extends android.app.Fragment {
	protected boolean finishAfterDialog
	protected android.os.Bundle argumentsForErrorDialog
	private de.greenrobot.event.EventBus eventBus
	private Object executionScope
	public void  () 
	public void onResume () 
	public void onPause () 
	public void onEventMainThread (de.greenrobot.event.util.ThrowableFailureEvent) 
		de.greenrobot.event.util.ThrowableFailureEvent event
		android.app.FragmentManager fm
		android.app.DialogFragment existingFragment
		android.app.DialogFragment errorFragment
	public static void attachTo (android.app.Activity, java.lang.Object, boolean, android.os.Bundle) 
		android.app.Activity activity
		Object executionScope
		boolean finishAfterDialog
		android.os.Bundle argumentsForErrorDialog
		android.app.FragmentManager fm
		de.greenrobot.event.util.ErrorDialogManager$HoneycombManagerFragment fragment
}

de/greenrobot/event/util/ErrorDialogManager$SupportManagerFragment.class
ErrorDialogManager.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogManager$SupportManagerFragment extends android.support.v4.app.Fragment {
	protected boolean finishAfterDialog
	protected android.os.Bundle argumentsForErrorDialog
	private de.greenrobot.event.EventBus eventBus
	private boolean skipRegisterOnNextResume
	private Object executionScope
	public void  () 
	public void onCreate (android.os.Bundle) 
		android.os.Bundle savedInstanceState
	public void onResume () 
	public void onPause () 
	public void onEventMainThread (de.greenrobot.event.util.ThrowableFailureEvent) 
		de.greenrobot.event.util.ThrowableFailureEvent event
		android.support.v4.app.FragmentManager fm
		android.support.v4.app.DialogFragment existingFragment
		android.support.v4.app.DialogFragment errorFragment
	public static void attachTo (android.app.Activity, java.lang.Object, boolean, android.os.Bundle) 
		android.app.Activity activity
		Object executionScope
		boolean finishAfterDialog
		android.os.Bundle argumentsForErrorDialog
		android.support.v4.app.FragmentManager fm
		de.greenrobot.event.util.ErrorDialogManager$SupportManagerFragment fragment
}

de/greenrobot/event/util/ErrorDialogManager.class
ErrorDialogManager.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ErrorDialogManager extends java.lang.Object {
	public static de.greenrobot.event.util.ErrorDialogFragmentFactory factory
	protected static final String TAG_ERROR_DIALOG
	protected static final String TAG_ERROR_DIALOG_MANAGER
	public static final String KEY_TITLE
	public static final String KEY_MESSAGE
	public static final String KEY_FINISH_AFTER_DIALOG
	public static final String KEY_ICON_ID
	public static final String KEY_EVENT_TYPE_ON_CLOSE
	public void  () 
	public static void attachTo (android.app.Activity) 
		android.app.Activity activity
	public static void attachTo (android.app.Activity, boolean) 
		android.app.Activity activity
		boolean finishAfterDialog
	public static void attachTo (android.app.Activity, boolean, android.os.Bundle) 
		android.app.Activity activity
		boolean finishAfterDialog
		android.os.Bundle argumentsForErrorDialog
		Object executionScope
	public static void attachTo (android.app.Activity, java.lang.Object, boolean, android.os.Bundle) 
		android.app.Activity activity
		Object executionScope
		boolean finishAfterDialog
		android.os.Bundle argumentsForErrorDialog
	private static boolean isSupportActivity (android.app.Activity) 
		String name
		Class c
		android.app.Activity activity
		boolean isSupport
	protected static void checkLogException (de.greenrobot.event.util.ThrowableFailureEvent) 
		String tag
		de.greenrobot.event.util.ThrowableFailureEvent event
	private static boolean isInExecutionScope (java.lang.Object, de.greenrobot.event.util.ThrowableFailureEvent) 
		Object eventExecutionScope
		Object executionScope
		de.greenrobot.event.util.ThrowableFailureEvent event
	static boolean access$000 (java.lang.Object, de.greenrobot.event.util.ThrowableFailureEvent) 
		Object x0
		de.greenrobot.event.util.ThrowableFailureEvent x1
}

de/greenrobot/event/util/ExceptionToResourceMapping.class
ExceptionToResourceMapping.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ExceptionToResourceMapping extends java.lang.Object {
	public final java.util.Map throwableToMsgIdMap
	public void  () 
	public java.lang.Integer mapThrowable (java.lang.Throwable) 
		Integer resId
		Throwable throwable
		Throwable throwableToCheck
		int depthToGo
	protected java.lang.Integer mapThrowableFlat (java.lang.Throwable) 
		Class candidate
		java.util.Map$Entry mapping
		java.util.Iterator i$
		Class closestClass
		java.util.Set mappings
		Throwable throwable
		Class throwableClass
		Integer resId
	public de.greenrobot.event.util.ExceptionToResourceMapping addMapping (java.lang.Class, int) 
		Class clazz
		int msgId
}

de/greenrobot/event/util/HasExecutionScope.class
HasExecutionScope.java
package de.greenrobot.event.util
public abstract de.greenrobot.event.util.HasExecutionScope extends java.lang.Object {
	public abstract java.lang.Object getExecutionScope () 
	public abstract void setExecutionScope (java.lang.Object) 
}

de/greenrobot/event/util/ThrowableFailureEvent.class
ThrowableFailureEvent.java
package de.greenrobot.event.util
public de.greenrobot.event.util.ThrowableFailureEvent extends java.lang.Object implements de.greenrobot.event.util.HasExecutionScope  {
	protected final Throwable throwable
	protected final boolean suppressErrorUi
	private Object executionContext
	public void  (java.lang.Throwable) 
		Throwable throwable
	public void  (java.lang.Throwable, boolean) 
		Throwable throwable
		boolean suppressErrorUi
	public java.lang.Throwable getThrowable () 
	public boolean isSuppressErrorUi () 
	public java.lang.Object getExecutionScope () 
	public void setExecutionScope (java.lang.Object) 
		Object executionContext
}