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

shz.core.reference.CReference Maven / Gradle / Ivy

package shz.core.reference;

public final class CReference {
    public volatile char value;

    public CReference() {
    }

    public CReference(char value) {
        this.value = value;
    }

    public char get() {
        return value;
    }

    public void set(char value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy