blob: 02c2e7d3fd5a02f9b392b0cd7d1ff3d9d77aa2d2 [file] [log] [blame]
public class Param<R> {
private final R r;
public Param(R r) {
this.r = r;
}
public R getR() {
return r;
}
}