pocketknife.BindExtra Maven / Gradle / Ivy
The newest version!
package pocketknife;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.CLASS;
/**
* Bind {@link android.content.Intent} extra for key.
*
*
* {@literal @}BindExtra("extra_key") int i;
*
*
*/
@Retention(CLASS)
@Target(FIELD)
public @interface BindExtra {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy