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

org.bidib.wizard.mvc.dmx.model.DmxModel Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package org.bidib.wizard.mvc.dmx.model;

/**
 * The DmxModel is used by the DmxModelerPanel to get access to the DMX scenery that is edited in the panel.
 */
public class DmxModel {

    private final DmxScenery dmxScenery;

    private final DmxSceneryModel dmxSceneryModel;

    /**
     * @param dmxScenery
     *            the dmx scenery
     */
    public DmxModel(final DmxScenery dmxScenery, final DmxSceneryModel dmxSceneryModel) {
        this.dmxScenery = dmxScenery;
        this.dmxSceneryModel = dmxSceneryModel;
    }

    /**
     * @return the dmx scenery
     */
    public DmxScenery getDmxScenery() {
        return dmxScenery;
    }

    /**
     * @return the dmxSceneryModel
     */
    public DmxSceneryModel getDmxSceneryModel() {
        return dmxSceneryModel;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy