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

com.github.robindevilliers.cascade.utils.Reference Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy