package es.upm.babel.ccjml.samples.recyclingplant.java;

/**
 * @author rnnalborodo
 */
public class IncrementWeightRequestCSP {
  private Integer weight;

  public IncrementWeightRequestCSP(Integer fst) {
    this.weight = fst;
  }
  
  public int getWeight() {
    return weight;
  }

  public void setWeight(int fst) {
    this.weight = fst;
  }
  
}
