Clover coverage report - Code Coverage for tapestry release 4.0-beta-10
Coverage timestamp: Sat Oct 8 2005 19:08:05 EDT
file stats: LOC: 84   Methods: 3
NCLOC: 45   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
BindingSourceImpl.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.tapestry.services.impl;
 16   
 17    import java.util.HashMap;
 18    import java.util.Iterator;
 19    import java.util.List;
 20    import java.util.Map;
 21   
 22    import org.apache.hivemind.Location;
 23    import org.apache.tapestry.IBinding;
 24    import org.apache.tapestry.IComponent;
 25    import org.apache.tapestry.binding.BindingFactory;
 26    import org.apache.tapestry.binding.BindingSource;
 27   
 28    /**
 29    * Implementation of the <code>tapestry.bindings.BindingSource</code> service.
 30    *
 31    * @author Howard Lewis Ship
 32    * @since 4.0
 33    */
 34    public class BindingSourceImpl implements BindingSource
 35    {
 36    private List _contributions;
 37   
 38    /**
 39    * Keyed on prefix, value is {@link BindingFactory}.
 40    */
 41    private Map _factoryMap = new HashMap();
 42   
 43  43 public void initializeService()
 44    {
 45  43 Iterator i = _contributions.iterator();
 46   
 47  43 while (i.hasNext())
 48    {
 49  472 BindingPrefixContribution c = (BindingPrefixContribution) i.next();
 50   
 51  472 _factoryMap.put(c.getPrefix(), c.getFactory());
 52    }
 53    }
 54   
 55  1661 public IBinding createBinding(IComponent component, String bindingDescription,
 56    String reference, String defaultPrefix, Location location)
 57    {
 58  1661 String prefix = defaultPrefix;
 59  1661 String path = reference;
 60   
 61  1661 int colonx = reference.indexOf(':');
 62   
 63  1661 if (colonx > 1)
 64    {
 65  820 String pathPrefix = reference.substring(0, colonx);
 66   
 67  820 if (_factoryMap.containsKey(pathPrefix))
 68    {
 69  819 prefix = pathPrefix;
 70   
 71  819 path = reference.substring(colonx + 1);
 72    }
 73    }
 74   
 75  1661 BindingFactory factory = (BindingFactory) _factoryMap.get(prefix);
 76   
 77  1661 return factory.createBinding(component, bindingDescription, path, location);
 78    }
 79   
 80  43 public void setContributions(List contributions)
 81    {
 82  43 _contributions = contributions;
 83    }
 84    }