Android Open Source - EventPool Event Filter






From Project

Back to project page EventPool.

License

The source code is released under:

Apache License

If you think the Android project EventPool listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package me.dawson.eventpool;
/*from  w  w  w . j  a  v  a2 s . c  o m*/
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface EventFilter {
  String[] events();

  boolean isMain() default true;
}




Java Source Code List

me.dawson.eventpool.EventFilter.java
me.dawson.eventpool.EventPool.java
me.dawson.eventpool.Event.java
me.dawson.eventpool.ListenerHolder.java