001package com.identityworksllc.iiq.common.table; 002 003import sailpoint.tools.GeneralException; 004 005/** 006 * A cell modifier that can be passed in to various methods 007 */ 008@FunctionalInterface 009public interface CellOption { 010 /** 011 * Modify the cell passed in according to the option details 012 * @param cell The cell to modify 013 * @throws GeneralException on any failures 014 */ 015 void accept(Cell cell) throws GeneralException; 016}