KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > myfaces > custom > tree > HtmlTreeColumn


1 /*
2  * Copyright 2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.myfaces.custom.tree;
17
18 import javax.faces.component.UIColumn;
19
20 /**
21  * <p>
22  * Tree column model. This column is used to provide the place holder for the
23  * tree. This is used in conjunction with the table format display.
24  * </p>
25  * @author <a HREF="mailto:dlestrat@apache.org">David Le Strat</a>
26  */

27 public class HtmlTreeColumn extends UIColumn
28 {
29     /** The component type. */
30     public static final String JavaDoc COMPONENT_TYPE = "org.apache.myfaces.HtmlTreeColumn";
31     
32     /** The component family. */
33     public static final String JavaDoc COMPONENT_FAMILY = "org.apache.myfaces.HtmlTreeColumn";
34     
35     /**
36      * <p>
37      * Default Constructor.
38      * </p>
39      */

40     public HtmlTreeColumn()
41     {
42         super();
43     }
44     
45     /**
46      * @see javax.faces.component.UIComponent#getFamily()
47      */

48     public String JavaDoc getFamily()
49     {
50         return COMPONENT_FAMILY;
51     }
52 }
53
Popular Tags