KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > myfaces > wap > renderkit > wml > ColumnRenderer


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.wap.renderkit.wml;
17
18 import org.apache.commons.logging.Log;
19 import org.apache.commons.logging.LogFactory;
20
21
22 /**
23  * @author <a HREF="mailto:Jiri.Zaloudek@ivancice.cz">Jiri Zaloudek</a> (latest modification by $Author: matzew $)
24  * @version $Revision: 1.1 $ $Date: 2004/12/30 09:37:26 $
25  * $Log: ColumnRenderer.java,v $
26  * Revision 1.1 2004/12/30 09:37:26 matzew
27  * added a new RenderKit for WML. Thanks to Jirí Žaloudek
28  *
29  */

30 public class ColumnRenderer extends GroupRenderer {
31     private static Log log = LogFactory.getLog(ColumnRenderer.class);
32     
33     /** Creates a new instance of ColumnRenderer */
34     public ColumnRenderer() {
35         super();
36         log.debug("created object " + this.getClass().getName());
37     }
38 }
39
40
Popular Tags