com.vaadin.flow.component.spreadsheet.command.ValueChangeCommand Maven / Gradle / Ivy
/**
* Copyright 2000-2024 Vaadin Ltd.
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See {@literal } for the full
* license.
*/
package com.vaadin.flow.component.spreadsheet.command;
import java.util.Set;
import org.apache.poi.ss.util.CellReference;
/**
* Common interface for all Spreadsheet commands that change cell values.
*
* @author Vaadin Ltd.
* @since 1.0
*/
public interface ValueChangeCommand extends Command {
/**
* Returns the cells that had their value(s) changed.
*/
public Set getChangedCells();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy