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

com.venky.core.checkpoint.Checkpoint Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
package com.venky.core.checkpoint;

public class Checkpoint {
	private M checkpointedValue;  
	public Checkpoint(M m){
		this.checkpointedValue = m;
	}
	public M getValue(){
		return checkpointedValue;
	}
	public void setValue(M value){
		this.checkpointedValue = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy