com.fastchar.extjs.core.heads.FastHeadInfo 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.Quickly build a background management system
package com.fastchar.extjs.core.heads;
import com.fastchar.core.FastMapWrap;
import java.util.LinkedHashMap;
public class FastHeadInfo extends LinkedHashMap {
private static final long serialVersionUID = 5565876705941162979L;
protected transient FastMapWrap mapWrap;
public FastHeadInfo() {
super(16);
mapWrap = FastMapWrap.newInstance(this);
}
public FastMapWrap getMapWrap() {
return mapWrap;
}
public void setTagName(String tagName) {
put("tag", tagName);
}
public String getTagName() {
return mapWrap.getString("tag");
}
public String getText() {
return mapWrap.getString("text", "");
}
public void setText(String text) {
put("text", text);
}
public boolean isWriteHtml() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy