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

com.nitorcreations.nflow.engine.workflow.Mutable Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package com.nitorcreations.nflow.engine.workflow;

public class Mutable {
  public T val;
  public Mutable() {}
  public Mutable(T val) {
    this.val = val;
  }
  public void setVal(T val) {
    this.val = val;
  }
  public T getVal() {
    return val;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy