com.dxm.rxbinder.annotations.RxBind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AutoRxBinder Show documentation
Show all versions of AutoRxBinder Show documentation
Generates RxJava bindings.
package com.dxm.rxbinder.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by ants on 9/5/16.
*/
@Retention(RetentionPolicy.CLASS)
@Target(ElementType.METHOD)
public @interface RxBind {
String name() default "";
Class extends RuntimeException> exception() default RuntimeException.class;
}