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

org.jbpm.sim.report.dto.TimedValue Maven / Gradle / Ivy

There is a newer version: 3.2.19.ayg
Show newest version
package org.jbpm.sim.report.dto;

import java.io.Serializable;

public class TimedValue implements Serializable { // org.jbpm.sim.report.dto.TimedValue

  private static final long serialVersionUID = 7092856556996284567L;

  private double time;

  private double value;

  public TimedValue(double time, double value) {
    this.time = time;
    this.value = value;
  }

  public double getTime() {
    return time;
  }

  public double getValue() {
    return value;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy