org.robolectric.res.android.Ref Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resources Show documentation
Show all versions of resources Show documentation
An alternative Android testing framework.
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