butterknife.compiler.FieldBitmapBinding 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.
package butterknife.compiler;
final class FieldBitmapBinding {
private final Id id;
private final String name;
FieldBitmapBinding(Id id, String name) {
this.id = id;
this.name = name;
}
public Id getId() {
return id;
}
public String getName() {
return name;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy