All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.extjs.core.heads.FastHeadInfo Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
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());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy