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

butterknife.compiler.ResourceBinding Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy