enterprises.orbital.impl.evexmlapi.chr.JumpClone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eve-xml-api Show documentation
Show all versions of eve-xml-api Show documentation
Library to interact with EVE XML API servers
package enterprises.orbital.impl.evexmlapi.chr;
import enterprises.orbital.evexmlapi.chr.IJumpClone;
public class JumpClone implements IJumpClone {
private int jumpCloneID = 0;
private int typeID = 0;
private long locationID = 0;
private String cloneName = null;
public int getJumpCloneID() {
return jumpCloneID;
}
public void setJumpCloneID(int jumpCloneID) {
this.jumpCloneID = jumpCloneID;
}
public int getTypeID() {
return typeID;
}
public void setTypeID(int typeID) {
this.typeID = typeID;
}
public long getLocationID() {
return locationID;
}
public void setLocationID(long locationID) {
this.locationID = locationID;
}
public String getCloneName() {
return cloneName;
}
public void setCloneName(String cloneName) {
this.cloneName = cloneName;
}
}