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

jasima.shopSim.util.modelDef.DynamicSourceDef Maven / Gradle / Ivy

Go to download

JAva SImulatior for MAnufacturing and logistics - A framework for discrete event simulation and computer experiments with a main focus on modelling and analyzing logistic/manufacturing systems.

There is a newer version: 1.3.0
Show newest version
package jasima.shopSim.util.modelDef;

import jasima.shopSim.util.modelDef.streams.StreamDef;

public class DynamicSourceDef extends SourceDef {
	private RouteDef route;
	private StreamDef iats;
	private StreamDef dueDates;
	private StreamDef weights;
	private int numJobs;

	public RouteDef getRoute() {
		return route;
	}

	public void setRoute(RouteDef route) {
		firePropertyChange("route", this.route, this.route = route);
	}

	public StreamDef getIats() {
		return iats;
	}

	public void setIats(StreamDef iats) {
		firePropertyChange("iats", this.iats, this.iats = iats);
	}

	public StreamDef getDueDates() {
		return dueDates;
	}

	public void setDueDates(StreamDef dueDates) {
		firePropertyChange("dueDates", this.dueDates, this.dueDates = dueDates);
	}

	public StreamDef getWeights() {
		return weights;
	}

	public void setWeights(StreamDef weights) {
		firePropertyChange("weights", this.weights, this.weights = weights);
	}

	public int getNumJobs() {
		return numJobs;
	}

	public void setNumJobs(int numJobs) {
		firePropertyChange("numJobs", this.numJobs, this.numJobs = numJobs);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy