Coverage Report - javax.faces.view.facelets.ValidatorHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
ValidatorHandler
0%
0/6
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.EditableValueHolderAttachedObjectHandler;
 22  
 import javax.faces.view.facelets.FaceletContext;
 23  
 
 24  
 import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFFaceletTag;
 25  
 
 26  
 /**
 27  
  * Handles setting a Validator instance on a EditableValueHolder. Will wire all attributes set to the Validator instance
 28  
  * created/fetched. Uses the "binding" attribute for grabbing instances to apply attributes to. <p/> Will only
 29  
  * set/create Validator is the passed UIComponent's parent is null, signifying that it wasn't restored from an existing
 30  
  * tree.
 31  
  * 
 32  
  * @author Jacob Hookom
 33  
  * @version $Id: ValidateHandler.java,v 1.4 2008/07/13 19:01:46 rlubke Exp $
 34  
  */
 35  
 @JSFFaceletTag
 36  
 public class ValidatorHandler extends FaceletsAttachedObjectHandler implements EditableValueHolderAttachedObjectHandler
 37  
 {
 38  
     private ValidatorConfig config;
 39  
     
 40  
     public ValidatorHandler(ValidatorConfig config)
 41  
     {
 42  0
         super(config);
 43  
         
 44  0
         this.config = config;
 45  0
     }
 46  
     
 47  
     public ValidatorConfig getValidatorConfig ()
 48  
     {
 49  0
         return this.config;
 50  
     }
 51  
     
 52  
     public String getValidatorId(FaceletContext ctx)
 53  
     {
 54  0
         return config.getValidatorId();
 55  
     }
 56  
 
 57  
     protected TagHandlerDelegate getTagHandlerDelegate()
 58  
     {
 59  0
         return delegateFactory.createValidatorHandlerDelegate (this);
 60  
     }
 61  
 }