com.venky.core.checkpoint.Checkpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
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;
}
}