Back to project page eve-datapad.
The source code is released under:
GNU General Public License
If you think the Android project eve-datapad listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.pocketcircuit.evedatapad; /* ww w . j a va 2 s. c o m*/ import java.util.ArrayList; /** * Created by jesse on 8/11/13. */ public class Character { private int id; private String name; private String DoB; private String race; private String bloodline; private String ancestry; private String gender; private String corpName; private int corpId; private String allianceName; private int allianceId; private String cloneName; private long cloneSkillPoints; private double walletBalance; private String avatarResource; private ArrayList<Skill> skillQueue; // private String currentLocation; // private int unreadMailNumber; // private int currentSP; // private String activeShip; // private double securityStatus; public Character () { id = -1; name = ""; avatarResource = ""; walletBalance = -1; skillQueue = new ArrayList<Skill>(); corpName = ""; allianceName = ""; bloodline = ""; race = ""; // currentLocation = ""; // unreadMailNumber = -1; // currentSP = 0; // activeShip = ""; // securityStatus = -100; } public Character(int passedId, String passedName, String passedAvatar, int passedWalletBalance, ArrayList<Skill> passedSkillQueue, String passedCorpName, String passedAllianceName, String passedFaction, String passedRace, String passedCurrentLocation, int passedUnreadMailNumber, int passedCurrentSP, String passedActiveShip, double passedSecurityStatus) { id = passedId; name = passedName; avatarResource = passedAvatar; walletBalance = passedWalletBalance; skillQueue = passedSkillQueue; corpName = passedCorpName; allianceName = passedAllianceName; bloodline = passedFaction; race = passedRace; // currentLocation = passedCurrentLocation; // unreadMailNumber = passedUnreadMailNumber; // currentSP = passedCurrentSP; // activeShip = passedActiveShip; // securityStatus = passedSecurityStatus; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDoB() { return DoB; } public void setDoB(String doB) { DoB = doB; } public String getRace() { return race; } public void setRace(String race) { this.race = race; } public String getBloodline() { return bloodline; } public void setBloodline(String bloodline) { this.bloodline = bloodline; } public String getAncestry() { return ancestry; } public void setAncestry(String ancestry) { this.ancestry = ancestry; } public String getGender() { return gender; } public void setGender(String gender) { this.gender = gender; } public String getCorpName() { return corpName; } public void setCorpName(String corpName) { this.corpName = corpName; } public String getAllianceName() { return allianceName; } public void setAllianceName(String allianceName) { this.allianceName = allianceName; } public int getCorpId() { return corpId; } public void setCorpId(int corpId) { this.corpId = corpId; } public int getAllianceId() { return allianceId; } public void setAllianceId(int allianceId) { this.allianceId = allianceId; } public String getCloneName() { return cloneName; } public void setCloneName(String cloneName) { this.cloneName = cloneName; } public long getCloneSkillPoints() { return cloneSkillPoints; } public void setCloneSkillPoints(long cloneSkillPoints) { this.cloneSkillPoints = cloneSkillPoints; } public double getWalletBalance() { return walletBalance; } public void setWalletBalance(double walletBalance) { this.walletBalance = walletBalance; } public ArrayList<Skill> getSkillQueue() { return skillQueue; } public void setSkillQueue(ArrayList<Skill> skillQueue) { this.skillQueue = skillQueue; } public String getAvatarResource() { return avatarResource; } public void setAvatarResource(String avatarResource) { this.avatarResource = avatarResource; } // public String getCurrentLocation() { // return currentLocation; // } // // public void setCurrentLocation(String currentLocation) { // this.currentLocation = currentLocation; // } // // public int getUnreadMailNumber() { // return unreadMailNumber; // } // // public void setUnreadMailNumber(int unreadMailNumber) { // this.unreadMailNumber = unreadMailNumber; // } // // public int getCurrentSP() { // return currentSP; // } // // public void setCurrentSP(int currentSP) { // this.currentSP = currentSP; // } // // public String getActiveShip() { // return activeShip; // } // // public void setActiveShip(String activeShip) { // this.activeShip = activeShip; // } // // public double getSecurityStatus() { // return securityStatus; // } // // public void setSecurityStatus(double securityStatus) { // this.securityStatus = securityStatus; // } }