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

jasima.shopSim.util.modelDef.StaticSourceDef 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;

public class StaticSourceDef extends SourceDef {
	public static final String PROP_JOB_SPECS = "jobSpecs";
	
	private JobDef[] jobSpecs;

	public JobDef[] getJobSpecs() {
		return jobSpecs;
	}

	public void setJobSpecs(JobDef[] jobSpecs) {
		firePropertyChange(PROP_JOB_SPECS, this.jobSpecs, this.jobSpecs = jobSpecs);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy