Clover coverage report - Code Coverage for hivemind release 1.1-alpha-1
Coverage timestamp: Tue Jan 18 2005 07:55:08 EST
file stats: LOC: 58   Methods: 3
NCLOC: 29   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
DefaultsSymbolSource.java 100% 100% 100% 100%
coverage
 1   
 // Copyright 2004, 2005 The Apache Software Foundation
 2   
 //
 3   
 // Licensed under the Apache License, Version 2.0 (the "License");
 4   
 // you may not use this file except in compliance with the License.
 5   
 // You may obtain a copy of the License at
 6   
 //
 7   
 //     http://www.apache.org/licenses/LICENSE-2.0
 8   
 //
 9   
 // Unless required by applicable law or agreed to in writing, software
 10   
 // distributed under the License is distributed on an "AS IS" BASIS,
 11   
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12   
 // See the License for the specific language governing permissions and
 13   
 // limitations under the License.
 14   
 
 15   
 package org.apache.hivemind.service.impl;
 16   
 
 17   
 import java.util.HashMap;
 18   
 import java.util.List;
 19   
 import java.util.Map;
 20   
 
 21   
 import org.apache.hivemind.SymbolSource;
 22   
 import org.apache.hivemind.impl.BaseLocatable;
 23   
 
 24   
 /**
 25   
  * Implementation of {@link org.apache.hivemind.SymbolSource}driven off of an extension point.
 26   
  * 
 27   
  * @author Howard Lewis Ship
 28   
  */
 29   
 public class DefaultsSymbolSource extends BaseLocatable implements SymbolSource
 30   
 {
 31   
     private List _defaults;
 32   
 
 33   
     private Map _symbols = new HashMap();
 34   
 
 35  3
     public String valueForSymbol(String name)
 36   
     {
 37  3
         return (String) _symbols.get(name);
 38   
     }
 39   
 
 40  3
     public void initializeService()
 41   
     {
 42  3
         int count = _defaults.size();
 43  3
         for (int i = 0; i < count; i++)
 44   
         {
 45  3
             FactoryDefault fd = (FactoryDefault) _defaults.get(i);
 46   
 
 47  3
             String symbol = fd.getSymbol();
 48  3
             String value = fd.getValue();
 49   
 
 50  3
             _symbols.put(symbol, value);
 51   
         }
 52   
     }
 53   
 
 54  3
     public void setDefaults(List list)
 55   
     {
 56  3
         _defaults = list;
 57   
     }
 58   
 }