Clover coverage report - Code Coverage for tapestry-portlet release 4.0-beta-6
Coverage timestamp: Wed Sep 7 2005 18:46:01 EDT
file stats: LOC: 57   Methods: 3
NCLOC: 26   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
UserAttributeBindingFactory.java - 100% 100% 100%
coverage
 1    // Copyright 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.portlet.bindings;
 16   
 17    import javax.portlet.PortletRequest;
 18   
 19    import org.apache.hivemind.Location;
 20    import org.apache.tapestry.IBinding;
 21    import org.apache.tapestry.IComponent;
 22    import org.apache.tapestry.binding.BindingFactory;
 23    import org.apache.tapestry.coerce.ValueConverter;
 24   
 25    /**
 26    * Factory used to create {@link org.apache.tapestry.portlet.bindings.UserAttributeBinding}s.
 27    *
 28    * @author Howard M. Lewis Ship
 29    * @since 4.0
 30    */
 31    public class UserAttributeBindingFactory implements BindingFactory
 32    {
 33    private PortletRequest _request;
 34   
 35    private ValueConverter _valueConverter;
 36   
 37    /**
 38    * Interprets the path as the Portlet user attribute name.
 39    */
 40   
 41  3 public IBinding createBinding(IComponent root, String bindingDescription, String path,
 42    Location location)
 43    {
 44  3 return new UserAttributeBinding(bindingDescription, _valueConverter, location, _request,
 45    path);
 46    }
 47   
 48  3 public void setRequest(PortletRequest request)
 49    {
 50  3 _request = request;
 51    }
 52   
 53  3 public void setValueConverter(ValueConverter valueConverter)
 54    {
 55  3 _valueConverter = valueConverter;
 56    }
 57    }