Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 29   Methods: 2
NCLOC: 10   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
WeakReferencedValueMapMatrix.java - 0% 0% 0%
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   
 
 9   
 import org.asyrinx.brownie.core.collection.WeakReferencedValueMap;
 10   
 
 11   
 /**
 12   
  * @author Akima
 13   
  */
 14   
 public class WeakReferencedValueMapMatrix extends HashMapMatrix {
 15   
 
 16   
     /**
 17   
      * Constructor for WeakReferencedValueMapMatrix.
 18   
      */
 19  0
     public WeakReferencedValueMapMatrix() {
 20  0
         super();
 21   
     }
 22   
 
 23   
     /**
 24   
      */
 25  0
     protected Map newRowMap() {
 26  0
         return new WeakReferencedValueMap();
 27   
     }
 28   
 
 29   
 }