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

org.jxls.builder.xls.AreaCommand Maven / Gradle / Ivy

The newest version!
package org.jxls.builder.xls;

import org.jxls.command.AbstractCommand;
import org.jxls.common.CellRef;
import org.jxls.common.Context;
import org.jxls.common.Size;

/**
 * A container area command used in {@link XlsCommentAreaBuilder} to enclose other commands
 * 
 * @author Leonid Vysochyn
 */
public class AreaCommand extends AbstractCommand {
    public static final String COMMAND_NAME = "area";

    @Override
    public String getName() {
        return COMMAND_NAME;
    }

    @Override
    public Size applyAt(CellRef cellRef, Context context) {
        return Size.ZERO_SIZE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy