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

org.robolectric.res.android.Ref Maven / Gradle / Ivy

There is a newer version: 4.14.1
Show newest version
package org.robolectric.res.android;

public class Ref {

  private T t;

  public Ref(T t) {
    this.t = t;
  }

  public T get() {
    return t;
  }

  public void set(T t) {
    this.t = t;
  }

  @Override
  public String toString() {
    return "Ref<" + t + '>';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy