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

butterknife.internal.FieldResourceBinding Maven / Gradle / Ivy

There is a newer version: 10.2.3
Show newest version
package butterknife.internal;

final class FieldResourceBinding {
  private final int id;
  private final String name;
  private final String method;

  FieldResourceBinding(int id, String name, String method) {
    this.id = id;
    this.name = name;
    this.method = method;
  }

  public int getId() {
    return id;
  }

  public String getName() {
    return name;
  }

  public String getMethod() {
    return method;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy