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

jasima.shopSim.util.modelDef.IndividualMachineDef 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.core.WorkStation;

public class IndividualMachineDef extends PropertySupport {

	private double machRelDate = 0.0;
	private String initialSetup = WorkStation.DEF_SETUP_STR;
	private String name = null;
	private WorkstationDef workstation = null; 

	public double getMachRelDate() {
		return machRelDate;
	}

	public void setMachRelDate(double machRelDate) {
		firePropertyChange("machRelDate", this.machRelDate,
				this.machRelDate = machRelDate);
	}

	public String getInitialSetup() {
		return initialSetup;
	}

	public void setInitialSetup(String initialSetup) {
		firePropertyChange("initialSetup", this.initialSetup,
				this.initialSetup = initialSetup);
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		firePropertyChange("name", this.name, this.name = name);
	}

	public WorkstationDef getWorkstation() {
		return workstation;
	}

	public void setWorkstation(WorkstationDef workstation) {
		firePropertyChange("workstation", this.workstation, this.workstation = workstation);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy