com.github.robindevilliers.cascade.utils.Reference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cascade Show documentation
Show all versions of cascade Show documentation
Cascade is a blackbox testing framework
The newest version!
package com.github.robindevilliers.cascade.utils;
public class Reference {
private T object;
public Reference(){
}
public Reference(T object){
this.object = object;
}
public T get() {
return object;
}
public void set(T object) {
this.object = object;
}
}