Back to project page dexedd.
The source code is released under:
MIT License
If you think the Android project dexedd 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.nav.dexedd.model; /*from w ww . j a va 2s. c o m*/ /** * Ability model. * * @author Eduardo Naveda * @since 0.0.1 */ public class Ability { private Integer id; private String name; private String flavorText; private String effect; private Boolean isHidden; private Integer slot; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getFlavorText() { return flavorText; } public void setFlavorText(String flavorText) { this.flavorText = flavorText; } public String getEffect() { return effect; } public void setEffect(String effect) { this.effect = effect; } public Boolean isHidden() { return isHidden; } public void setIsHidden(Boolean isHidden) { this.isHidden = isHidden; } public Integer getSlot() { return slot; } public void setSlot(Integer slot) { this.slot = slot; } }