|
|||||||||||||||||||
| 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 | |||||||||||||||
| HashMapMatrix.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 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.HashMap;
|
|
| 8 |
import java.util.HashSet;
|
|
| 9 |
import java.util.Map;
|
|
| 10 |
import java.util.Set;
|
|
| 11 |
|
|
| 12 |
/**
|
|
| 13 |
* @author Akima
|
|
| 14 |
*/
|
|
| 15 |
public class HashMapMatrix extends AbstractMapMatrix { |
|
| 16 |
|
|
| 17 |
/**
|
|
| 18 |
* Constructor for MatrixMap.
|
|
| 19 |
*/
|
|
| 20 | 0 |
public HashMapMatrix() {
|
| 21 | 0 |
super();
|
| 22 |
} |
|
| 23 |
|
|
| 24 |
/**
|
|
| 25 |
*/
|
|
| 26 | 0 |
protected Map newBaseRowsMap() {
|
| 27 | 0 |
return new HashMap(); |
| 28 |
} |
|
| 29 |
|
|
| 30 |
/**
|
|
| 31 |
*/
|
|
| 32 | 0 |
protected Set newColKeySet() {
|
| 33 | 0 |
return new HashSet(); |
| 34 |
} |
|
| 35 |
|
|
| 36 |
/**
|
|
| 37 |
*/
|
|
| 38 | 0 |
protected Map newGetColResult() {
|
| 39 | 0 |
return new HashMap(); |
| 40 |
} |
|
| 41 |
|
|
| 42 |
/**
|
|
| 43 |
*/
|
|
| 44 | 0 |
protected Map newGetRowResult(Map source) {
|
| 45 | 0 |
return new HashMap(source); |
| 46 |
} |
|
| 47 |
|
|
| 48 |
/**
|
|
| 49 |
*/
|
|
| 50 | 0 |
protected Set newRowKeySet(Set source) {
|
| 51 | 0 |
return new HashSet(source); |
| 52 |
} |
|
| 53 |
|
|
| 54 |
/**
|
|
| 55 |
*/
|
|
| 56 | 0 |
protected Map newRowMap() {
|
| 57 | 0 |
return new HashMap(); |
| 58 |
} |
|
| 59 |
|
|
| 60 |
} |
|
||||||||||