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

enterprises.orbital.impl.evexmlapi.chr.JumpClone Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy