KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > myfaces > component > UIColumns


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.component;
17
18 import javax.faces.component.UIData;
19
20 /**
21  * @author Mathias Broekelmann (latest modification by $Author: matzew $)
22  * @version $Revision: 1.1 $ $Date: 2005/03/29 11:40:50 $
23  * $Log: UIColumns.java,v $
24  * Revision 1.1 2005/03/29 11:40:50 matzew
25  * added new crosstable component (x:columns). Contributed by Mathias Broekelmann
26  *
27  */

28 public class UIColumns extends UIData
29 {
30   public static final String JavaDoc COMPONENT_TYPE = "org.apache.myfaces.Columns";
31   public static final String JavaDoc COMPONENT_FAMILY = UIData.COMPONENT_FAMILY;
32
33   /**
34    *
35    */

36   public UIColumns()
37   {
38     super();
39   }
40   
41   /**
42    * @see javax.faces.component.UIComponentBase#getRendererType()
43    */

44   public String JavaDoc getRendererType()
45   {
46     return null;
47   }
48
49   /**
50    * @see javax.faces.component.UIComponent#getFamily()
51    */

52   public String JavaDoc getFamily()
53   {
54     return COMPONENT_FAMILY;
55   }
56 }
57
Popular Tags