butterknife.compiler.ResourceBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of butterknife-compiler Show documentation
Show all versions of butterknife-compiler Show documentation
Field and method binding for Android views.
The newest version!
package butterknife.compiler;
import com.squareup.javapoet.CodeBlock;
interface ResourceBinding {
Id id();
/** True if the code for this binding requires a 'res' variable for {@code Resources} access. */
boolean requiresResources(int sdk);
CodeBlock render(int sdk);
}