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

org.jxls.command.CellRefGenerator Maven / Gradle / Ivy

The newest version!
package org.jxls.command;

import org.jxls.common.CellRef;
import org.jxls.common.Context;

/**
 * Defines generic method for generating new cell references during {@link EachCommand} command iteration
 * 
 * @author Leonid Vysochyn
 */
public interface CellRefGenerator {
    
    /**
     * @param index current iteration index
     * @param context current context
     * @return target cell reference for this index
     */
    CellRef generateCellRef(int index, Context context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy