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

org.bidib.wizard.simulation.events.ServoPortStatusEvent Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package org.bidib.wizard.simulation.events;

import org.bidib.wizard.mvc.main.model.ServoPort;

public class ServoPortStatusEvent {

    private final String nodeAddr;

    private final ServoPort port;

    private final int value;

    public ServoPortStatusEvent(String nodeAddr, ServoPort port, int value) {
        this.nodeAddr = nodeAddr;
        this.port = port;
        this.value = value;
    }

    public String getNodeAddr() {
        return nodeAddr;
    }

    public ServoPort getPort() {
        return port;
    }

    public int getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy