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.
package com.fastchar.extjs.core.heads;
import com.fastchar.core.FastBaseInfo;
import com.fastchar.utils.FastStringUtils;
public class FastHeadInfo extends FastBaseInfo {
private static final long serialVersionUID = 5565876705941162979L;
private String text;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public boolean isWriteHtml() {
return true;
}
@Override
public void fromProperty() {
super.fromProperty();
put("tag", getTagName());
put("text", getText());
}
}