Clover coverage report - Code Coverage for tapestry-portlet release 4.0-rc-2
Coverage timestamp: Sat Dec 17 2005 09:45:51 PST
file stats: LOC: 52   Methods: 2
NCLOC: 23   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.AbstractBindingFactory;
 23    import org.apache.tapestry.binding.BindingFactory;
 24    import org.apache.tapestry.coerce.ValueConverter;
 25    import org.apache.tapestry.form.validator.AbstractValidatorWrapper;
 26   
 27    /**
 28    * Factory used to create {@link org.apache.tapestry.portlet.bindings.UserAttributeBinding}s.
 29    *
 30    * @author Howard M. Lewis Ship
 31    * @since 4.0
 32    */
 33    public class UserAttributeBindingFactory extends AbstractBindingFactory
 34    {
 35    private PortletRequest _request;
 36   
 37    /**
 38    * Interprets the path as the Portlet user attribute name.
 39    */
 40   
 41  3 public IBinding createBinding(IComponent root, String bindingDescription, String expression,
 42    Location location)
 43    {
 44  3 return new UserAttributeBinding(bindingDescription, getValueConverter(), location,
 45    _request, expression);
 46    }
 47   
 48  3 public void setRequest(PortletRequest request)
 49    {
 50  3 _request = request;
 51    }
 52    }