com.fastchar.extjs.core.heads.FastHeadExtInfo 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.utils.FastStringUtils;
public class FastHeadExtInfo extends FastHeadInfo {
public FastHeadExtInfo() {
this.setTagName("ext");
}
private String name;
private String value;
private String href;
private String content;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getHref() {
return href;
}
public void setHref(String href) {
this.href = href;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getColorValue() {
return "#" + FastStringUtils.stripStart(getValue(), "#");
}
@Override
public boolean isWriteHtml() {
return false;
}
}