org.bidib.wizard.dmx.client.model.DmxDimmerConfigModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-dmx-client Show documentation
Show all versions of bidibwizard-dmx-client Show documentation
jBiDiB BiDiB Wizard DMX client POM
The newest version!
package org.bidib.wizard.dmx.client.model;
import org.bidib.wizard.model.dmx.DmxDimmer;
public class DmxDimmerConfigModel {
private final DmxDimmer dmxDimmer;
private final DmxSceneryModel dmxSceneryModel;
/**
* @param dmxScenery
* the dmx scenery
*/
public DmxDimmerConfigModel(final DmxDimmer dmxDimmer, final DmxSceneryModel dmxSceneryModel) {
this.dmxDimmer = dmxDimmer;
this.dmxSceneryModel = dmxSceneryModel;
}
/**
* @return the dmx dimmer
*/
public DmxDimmer getDmxDimmer() {
return dmxDimmer;
}
/**
* @return the dmxSceneryModel
*/
public DmxSceneryModel getDmxSceneryModel() {
return dmxSceneryModel;
}
}