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

enterprises.orbital.impl.evexmlapi.chr.JumpCloneImplant 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.IJumpCloneImplant;

public class JumpCloneImplant implements IJumpCloneImplant {
  private int    jumpCloneID = 0;
  private int    typeID      = 0;
  private String typeName    = null;

  @Override
  public int getJumpCloneID() {
    return jumpCloneID;
  }

  public void setJumpCloneID(int jumpCloneID) {
    this.jumpCloneID = jumpCloneID;
  }

  @Override
  public int getTypeID() {
    return typeID;
  }

  public void setTypeID(int typeID) {
    this.typeID = typeID;
  }

  @Override
  public String getTypeName() {
    return typeName;
  }

  public void setTypeName(String typeName) {
    this.typeName = typeName;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy