01: // WARNING: This file was automatically generated. Do not edit it directly,
02: // or you will lose your changes.
03:
04: /*
05: * Licensed to the Apache Software Foundation (ASF) under one
06: * or more contributor license agreements. See the NOTICE file
07: * distributed with this work for additional information
08: * regarding copyright ownership. The ASF licenses this file
09: * to you under the Apache License, Version 2.0 (the
10: * "License"); you may not use this file except in compliance
11: * with the License. You may obtain a copy of the License at
12: *
13: * http://www.apache.org/licenses/LICENSE-2.0
14: *
15: * Unless required by applicable law or agreed to in writing,
16: * software distributed under the License is distributed on an
17: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18: * KIND, either express or implied. See the License for the
19: * specific language governing permissions and limitations
20: * under the License.
21: */
22: package javax.faces.component.html;
23:
24: import javax.el.ValueExpression;
25: import javax.faces.component.UIInput;
26: import javax.faces.context.FacesContext;
27:
28: /**
29: *
30: * <h4>Events:</h4>
31: * <table border="1" width="100%" cellpadding="3" summary="">
32: * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
33: * <th align="left">Type</th>
34: * <th align="left">Phases</th>
35: * <th align="left">Description</th>
36: * </tr>
37: * <tr class="TableRowColor">
38: * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
39: * <td valign="top" nowrap></td>
40: * <td valign="top">The valueChange event is delivered when the value
41: attribute is changed.</td>
42: * </tr>
43: * </table>
44: */
45: public class HtmlInputHidden extends UIInput {
46:
47: static public final String COMPONENT_FAMILY = "javax.faces.Input";
48: static public final String COMPONENT_TYPE = "javax.faces.HtmlInputHidden";
49:
50: /**
51: * Construct an instance of the HtmlInputHidden.
52: */
53: public HtmlInputHidden() {
54: setRendererType("javax.faces.Hidden");
55: }
56:
57: @Override
58: public String getFamily() {
59: return COMPONENT_FAMILY;
60: }
61: }
|