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

net.sf.jxls.tag.BaseTag Maven / Gradle / Ivy

Go to download

jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates

The newest version!
package net.sf.jxls.tag;

/**
 * Base class for {@link Tag} interface implementation
 * @author Leonid Vysochyn
 */
public abstract class BaseTag implements Tag{
    protected String name;
    protected TagContext tagContext;

    public String getName() {
        return name;
    }

    public String toString() {
        return "<" + getName() + ">";
    }

    public void init(TagContext context) {
        this.tagContext = context;
    }

    public TagContext getTagContext() {
        return tagContext;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy