Clover coverage report - Code Coverage for tapestry release 4.0.2
Coverage timestamp: Thu Apr 13 2006 10:52:06 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  42 public void initializeService()
 44    {
 45  42 Iterator i = _contributions.iterator();
 46   
 47  42 while (i.hasNext())
 48    {
 49  460 BindingPrefixContribution c = (BindingPrefixContribution) i.next();
 50   
 51  460 _factoryMap.put(c.getPrefix(), c.getFactory());
 52    }
 53    }
 54   
 55  1654 public IBinding createBinding(IComponent component, String bindingDescription,
 56    String reference, String defaultPrefix, Location location)
 57    {
 58  1654 String prefix = defaultPrefix;
 59  1654 String path = reference;
 60   
 61  1654 int colonx = reference.indexOf(':');
 62   
 63  1654 if (colonx > 1)
 64    {
 65  784 String pathPrefix = reference.substring(0, colonx);
 66   
 67  784 if (_factoryMap.containsKey(pathPrefix))
 68    {
 69  783 prefix = pathPrefix;
 70   
 71  783 path = reference.substring(colonx + 1);
 72    }
 73    }
 74   
 75  1654 BindingFactory factory = (BindingFactory) _factoryMap.get(prefix);
 76   
 77  1654 return factory.createBinding(component, bindingDescription, path, location);
 78    }
 79   
 80  42 public void setContributions(List contributions)
 81    {
 82  42 _contributions = contributions;
 83    }
 84    }