Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 31   Methods: 0
NCLOC: 12   Classes: 1
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
MapMatrix.java - - - -
coverage
 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.Map;
 8   
 import java.util.Set;
 9   
 
 10   
 /**
 11   
  * @author Akima
 12   
  */
 13   
 public interface MapMatrix {
 14   
 
 15   
     public Object get(Object colKey, Object rowKey);
 16   
 
 17   
     public void put(Object colKey, Object rowKey, Object value);
 18   
 
 19   
     public void remove(Object colKey, Object rowKey);
 20   
 
 21   
     public void clear();
 22   
 
 23   
     public Set colKeySet();
 24   
 
 25   
     public Set rowKeySet();
 26   
 
 27   
     public Map getCol(Object colKey);
 28   
 
 29   
     public Map getRow(Object rowKey);
 30   
 
 31   
 }