me.xhsun.guildwars2wrapper.model.v2.Specialization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw2wrapper Show documentation
Show all versions of gw2wrapper Show documentation
Guild Wars 2 API wrapper for Android
package me.xhsun.guildwars2wrapper.model.v2;
import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;
import java.util.List;
/**
* For more info on specializations API go here
* Model class for specialization
*
* @author xhsun
* @since 2017-06-15
*/
public class Specialization extends NameableInt {
private Item.Restriction profession;
private boolean elite;
private String background, icon;
private List minor_traits, major_traits;
public Item.Restriction getProfession() {
return profession;
}
public boolean isElite() {
return elite;
}
public String getIcon() {
return icon;
}
public String getBackground() {
return background;
}
public List getMinorTraits() {
return minor_traits;
}
public List getMajorTraits() {
return major_traits;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy