11 public static enum CREffectDetailType {
17 public static class CREffectDetail {
20 private CREffectDetailType type;
22 public CREffectDetail(String desc, String value, CREffectDetailType type) {
27 public String getDesc() {
30 public String getValue() {
33 public CREffectDetailType getType() {
38 public static class CREffectDescriptionForTooltip {
39 private String string;
40 private List<String> highlights =
new ArrayList<String>();
41 public String getString() {
44 public void setString(String
string) {
47 public List<String> getHighlights() {
53 public static class CRStatusItemData {
56 private String iconName;
57 private boolean isDebuff;
58 private Object idToken;
59 public CRStatusItemData(Object idToken, String iconName,
60 String title, String text,
boolean isDebuff) {
63 this.iconName = iconName;
64 this.isDebuff = isDebuff;
65 this.idToken = idToken;
67 public String getTitle() {
70 public String getText() {
73 public String getIconName() {
76 public boolean isDebuff() {
79 public Object getIdToken() {