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