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

org.bidib.wizard.gateway.model.LocoData Maven / Gradle / Ivy

There is a newer version: 2.0.25
Show newest version
package org.bidib.wizard.gateway.model;

public class LocoData {
    private int address;

    private String name;

    public LocoData(int address, String name) {
        this.address = address;
        this.name = name;
    }

    /**
     * @return the address
     */
    public int getAddress() {
        return address;
    }

    /**
     * @param address
     *            the address to set
     */
    public void setAddress(int address) {
        this.address = address;
    }

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name
     *            the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy