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; //from w ww. j a v a 2 s .c om import java.util.Date; /** * Created by jesse on 8/11/13. */ public class Skill { private int id; private String name; private String description; private String category; private String requiredSkills; private int level; private int timeTotal; private int timeRemaining; private int trainingMultiplier; private String primaryAttribute; private String secondaryAttribute; private long startSP; private long endSP; private Date startTime; private Date endTime; public Skill() { id = -1; name = ""; description = ""; category = ""; requiredSkills = ""; level = -1; timeTotal = -1; timeRemaining = -1; trainingMultiplier = -1; primaryAttribute = ""; secondaryAttribute = ""; startSP = -1; endSP = -1; startTime = new Date(); endTime = new Date(); } public Skill(int passedId, String passedName, String passedDescription, String passedCategory, String passedRequiredSkills, int passedLevel, int passedTimeTotal, int passedTimeRemaining, int passedTrainingMultiplier, String passedPrimaryAttribute, String passedSecondaryAttribute) { id = passedId; name = passedName; description = passedDescription; category = passedCategory; requiredSkills = passedRequiredSkills; level = passedLevel; timeTotal = passedTimeTotal; timeRemaining = passedTimeRemaining; trainingMultiplier = passedTrainingMultiplier; primaryAttribute = passedPrimaryAttribute; secondaryAttribute = passedSecondaryAttribute; } 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 getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } public String getRequiredSkills() { return requiredSkills; } public void setRequiredSkills(String requiredSkills) { this.requiredSkills = requiredSkills; } public int getLevel() { return level; } public void setLevel(int level) { this.level = level; } public int getTimeTotal() { return timeTotal; } public void setTimeTotal(int timeTotal) { this.timeTotal = timeTotal; } public int getTimeRemaining() { return timeRemaining; } public void setTimeRemaining(int timeRemaining) { this.timeRemaining = timeRemaining; } public int getTrainingMultiplier() { return trainingMultiplier; } public void setTrainingMultiplier(int trainingMultiplier) { this.trainingMultiplier = trainingMultiplier; } public String getPrimaryAttribute() { return primaryAttribute; } public void setPrimaryAttribute(String primaryAttribute) { this.primaryAttribute = primaryAttribute; } public String getSecondaryAttribute() { return secondaryAttribute; } public void setSecondaryAttribute(String secondaryAttribute) { this.secondaryAttribute = secondaryAttribute; } public long getStartSP() { return startSP; } public void setStartSP(long startSP) { this.startSP = startSP; } public long getEndSP() { return endSP; } public void setEndSP(long endSP) { this.endSP = endSP; } public Date getStartTime() { return startTime; } public void setStartTime(Date startTime) { this.startTime = startTime; } public Date getEndTime() { return endTime; } public void setEndTime(Date endTime) { this.endTime = endTime; } }