Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 74   Methods: 0
NCLOC: 9   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
IntegerKeyMap.java - - - -
coverage
 1   
 /*
 2   
  * Joey and its relative products are published under the terms
 3   
  * of the Apache Software License.
 4   
  */
 5   
 /*
 6   
  * Created on 2004/02/15
 7   
  */
 8   
 package org.asyrinx.brownie.core.collection;
 9   
 
 10   
 import java.util.Map;
 11   
 
 12   
 /**
 13   
  * 整数値あるいは整数オブジェクトがキーとなるMapインタフェースです。
 14   
  * 
 15   
  * @author akima
 16   
  */
 17   
 public interface IntegerKeyMap extends Map {
 18   
     /**
 19   
      * キーと値を追加します。
 20   
      * 
 21   
      * @param keyValue
 22   
      *            キーとなる整数値
 23   
      * @param value
 24   
      *            値となるオブジェクト
 25   
      */
 26   
     public void put(int keyValue, Object value);
 27   
 
 28   
     /**
 29   
      * キーと値を追加します。
 30   
      * 
 31   
      * @param key
 32   
      *            キーとなる整数オブジェクト
 33   
      * @param value
 34   
      *            値となるオブジェクト
 35   
      */
 36   
     public void put(Integer key, Object value);
 37   
 
 38   
     /**
 39   
      * キーから値を取得します。
 40   
      * 
 41   
      * @param keyValue
 42   
      *            キーとなる整数値
 43   
      * @return
 44   
      */
 45   
     public Object get(int keyValue);
 46   
 
 47   
     /**
 48   
      * キーから値を取得します。
 49   
      * 
 50   
      * @param key
 51   
      *            キーとなる整数オブジェクト
 52   
      * @return
 53   
      */
 54   
     public Object get(Integer key);
 55   
 
 56   
     /**
 57   
      * キーを指定してマップからキーと値の対を削除します。
 58   
      * 
 59   
      * @param keyValue
 60   
      *            キーとなる整数値
 61   
      * @return
 62   
      */
 63   
     public Object remove(int keyValue);
 64   
 
 65   
     /**
 66   
      * キーを指定してマップからキーと値の対を削除します。
 67   
      * 
 68   
      * @param key
 69   
      *            キーとなる整数オブジェクト
 70   
      * @return
 71   
      */
 72   
     public Object remove(Integer key);
 73   
 
 74   
 }