All Downloads are FREE. Search and download functionalities are using the official Maven repository.

butterknife.Optional Maven / Gradle / Ivy

There is a newer version: 10.2.3
Show newest version
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