Coverage Report - javax.faces.view.facelets.ConverterHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
ConverterHandler
0%
0/5
N/A
0
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *   http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 package javax.faces.view.facelets;
 20  
 
 21  
 import javax.faces.view.ValueHolderAttachedObjectHandler;
 22  
 
 23  
 import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFFaceletTag;
 24  
 
 25  
 /**
 26  
  * Handles setting a Converter instance on a ValueHolder. Will wire all attributes set to the Converter instance
 27  
  * created/fetched. Uses the "binding" attribute for grabbing instances to apply attributes to. <p/> Will only
 28  
  * set/create Converter is the passed UIComponent's parent is null, signifying that it wasn't restored from an existing
 29  
  * tree.
 30  
  * 
 31  
  * @see javax.faces.webapp.ConverterELTag
 32  
  * @see javax.faces.convert.Converter
 33  
  * @see javax.faces.component.ValueHolder
 34  
  * @author Jacob Hookom
 35  
  * @version $Id: ConvertHandler.java,v 1.4 2008/07/13 19:01:46 rlubke Exp $
 36  
  */
 37  
 @JSFFaceletTag
 38  
 public class ConverterHandler extends FaceletsAttachedObjectHandler implements ValueHolderAttachedObjectHandler
 39  
 {
 40  
     private String converterId;
 41  
     
 42  
     public ConverterHandler(ConverterConfig config)
 43  
     {
 44  0
         super(config);
 45  
         
 46  0
         converterId = config.getConverterId();
 47  0
     }
 48  
     
 49  
     public String getConverterId (FaceletContext ctx)
 50  
     {
 51  0
         return converterId;
 52  
     }
 53  
     
 54  
     protected TagHandlerDelegate getTagHandlerDelegate()
 55  
     {
 56  0
         return delegateFactory.createConverterHandlerDelegate (this);
 57  
     }
 58  
 }