butterknife.Optional Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of butterknife-annotations Show documentation
Show all versions of butterknife-annotations Show documentation
Field and method binding for Android views.
package butterknife;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.CLASS;
/**
* Denote that the view specified by the injection is not required to be present.
*
* {@literal @}Optional @OnClick(R.id.subtitle) void onSubtitleClick() {}
*
*/
@Retention(CLASS) @Target(METHOD)
public @interface Optional {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy