Coverage Report - org.apache.myfaces.shared_impl.taglib.html.HtmlInputHiddenTagBase
 
Classes in this File Line Coverage Branch Coverage Complexity
HtmlInputHiddenTagBase
0%
0/3
N/A
1
 
 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 org.apache.myfaces.shared_impl.taglib.html;
 20  
 
 21  
 import javax.faces.component.html.HtmlInputHidden;
 22  
 
 23  
 /**
 24  
  * @author Manfred Geiler (latest modification by $Author: cagatay $)
 25  
  * @author Martin Marinschek
 26  
  * @version $Revision: 606793 $ $Date: 2007-12-25 10:20:46 -0500 (Tue, 25 Dec 2007) $
 27  
  * @deprecated use {@link HtmlInputHiddenELTagBase} instead
 28  
  */
 29  0
 public abstract class HtmlInputHiddenTagBase
 30  
         extends HtmlInputTagBase
 31  
 {
 32  
     // UIComponent attributes --> already implemented in UIComponentTagBase
 33  
 
 34  
     // user role attributes --> already implemented in UIComponentTagBase
 35  
 
 36  
     // HTML universal attributes --> already implemented in HtmlComponentTagBase
 37  
 
 38  
     // HTML event handler attributes --> already implemented in HtmlComponentTagBase
 39  
 
 40  
     // HTML input attributes relevant for hidden-inputs
 41  
     //none relevant for hidden input
 42  
 
 43  
     // UIOutput attributes
 44  
     // value and converterId --> already implemented in UIComponentTagBase
 45  
 
 46  
     // UIInput attributes
 47  
     // --> already implemented in HtmlInputTagBase
 48  
 
 49  
     public String getComponentType()
 50  
     {
 51  0
         return HtmlInputHidden.COMPONENT_TYPE;
 52  
     }
 53  
 
 54  
     public String getRendererType()
 55  
     {
 56  0
         return "javax.faces.Hidden";
 57  
     }
 58  
 
 59  
 }