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

org.yamcs.utils.MutableLong Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.utils;

public class MutableLong {
    long v;
    public MutableLong(long v) {
        this.v = v;
    }
    public long getLong() {
        return v;
    };
    public void setLong(long v) {
        this.v = v;
    }

    public void increment() {
        v++;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy