package com.modulus.common.collections; /** * Interface that extends grid to make a grid * mutable. * * @author jrahm * * @param the type this grid holds */ public interface UpdateableGrid extends Grid{ /** * sets the reference in row row and column col * to obj * * @param row the row * @param col the column * @param obj the object */ public void set(int row, int col, T obj); }