org.bidib.wizard.gateway.model.LocoData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-gateway Show documentation
Show all versions of bidibwizard-gateway Show documentation
jBiDiB BiDiB Wizard Gateway POM
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;
}
}