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

com.github.romanqed.jutils.structs.ValueLink Maven / Gradle / Ivy

Go to download

A set of simple utilities for implementing missing functionality in different versions of Java.

There is a newer version: 4.0.0
Show newest version
package com.github.romanqed.jutils.structs;

public class ValueLink extends AbstractLink> {
    private E value;

    public ValueLink(E initValue) {
        this.value = initValue;
    }

    public ValueLink() {
        this(null);
    }

    public E getValue() {
        return value;
    }

    public void setValue(E value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy