blob: a48ee31b56171c29636b91458c539f8c78092a98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.modulus.common.collections;
/**
* Interface that extends grid to make a grid
* mutable.
*
* @author jrahm
*
* @param <T> the type this grid holds
*/
public interface UpdateableGrid<T> extends Grid<T>{
/**
* sets the reference in row <code>row</code> and column <code>col</code>
* to <code>obj</code>
*
* @param row the row
* @param col the column
* @param obj the object
*/
public void set(int row, int col, T obj);
}
|