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

butterknife.compiler.FieldBitmapBinding Maven / Gradle / Ivy

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