com.fastchar.extjs.core.enums.FastEnumInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-extjs Show documentation
Show all versions of fastchar-extjs Show documentation
FastChar-ExtJs is a Java Web framework that uses extjs libraries.
package com.fastchar.extjs.core.enums;
import com.fastchar.core.FastBaseInfo;
public class FastEnumInfo extends FastBaseInfo {
private Object id;
private String text;
public Object getId() {
return id;
}
public FastEnumInfo setId(Object id) {
this.id = id;
set("id", id);
return this;
}
public String getText() {
return text;
}
public FastEnumInfo setText(String text) {
this.text = text;
set("text", text);
return this;
}
}