|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ListMatrix.java | - | - | - | - |
|
1 |
/*
|
|
2 |
* Joey and its relative products are published under the terms
|
|
3 |
* of the Apache Software License.
|
|
4 |
*/
|
|
5 |
package org.asyrinx.brownie.core.collection.matrix;
|
|
6 |
|
|
7 |
import java.util.List;
|
|
8 |
|
|
9 |
/**
|
|
10 |
* @author Akima
|
|
11 |
*/
|
|
12 |
public interface ListMatrix { |
|
13 |
|
|
14 |
public Object get(int colKey, int rowKey); |
|
15 |
|
|
16 |
public void put(int colKey, int rowKey, Object value); |
|
17 |
|
|
18 |
public void remove(int colKey, int rowKey); |
|
19 |
|
|
20 |
public void clear(); |
|
21 |
|
|
22 |
public int colSize(); |
|
23 |
|
|
24 |
public int rowSize(); |
|
25 |
|
|
26 |
public List getCol(int colKey); |
|
27 |
|
|
28 |
public List getRow(int rowKey); |
|
29 |
|
|
30 |
} |
|