
org.jxls.builder.xls.AreaCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-jdk1.6 Show documentation
Show all versions of jxls-jdk1.6 Show documentation
Small library for Excel generation based on XLS templates
The newest version!
package org.jxls.builder.xls;
import org.jxls.common.Size;
import org.jxls.command.AbstractCommand;
import org.jxls.common.CellRef;
import org.jxls.common.Context;
/**
* A container area command used in {@link XlsCommentAreaBuilder} to enclose other commands
* @author Leonid Vysochyn
*/
public class AreaCommand extends AbstractCommand {
String clearCells;
public String getName() {
return "area";
}
public Size applyAt(CellRef cellRef, Context context) {
return Size.ZERO_SIZE;
}
public String getClearCells() {
return clearCells;
}
public void setClearCells(String clearCells) {
this.clearCells = clearCells;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy