KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > facelets > tag > jsf > html > AbstractHtmlLibrary


1 /**
2  * Licensed under the Common Development and Distribution License,
3  * you may not use this file except in compliance with the License.
4  * You may obtain a copy of the License at
5  *
6  * http://www.sun.com/cddl/
7  *
8  * Unless required by applicable law or agreed to in writing, software
9  * distributed under the License is distributed on an "AS IS" BASIS,
10  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11  * implied. See the License for the specific language governing
12  * permissions and limitations under the License.
13  */

14
15 package com.sun.facelets.tag.jsf.html;
16
17 import com.sun.facelets.tag.AbstractTagLibrary;
18
19 /**
20  * @author Jacob Hookom
21  * @version $Id: AbstractHtmlLibrary.java,v 1.2 2005/08/24 04:38:45 jhook Exp $
22  */

23 public abstract class AbstractHtmlLibrary extends AbstractTagLibrary {
24
25     /**
26      * @param namespace
27      */

28     public AbstractHtmlLibrary(String JavaDoc namespace) {
29         super(namespace);
30     }
31
32     public void addHtmlComponent(String JavaDoc name, String JavaDoc componentType,
33             String JavaDoc rendererType) {
34         super.addComponent(name, componentType, rendererType,
35                 HtmlComponentHandler.class);
36     }
37
38 }
39
Popular Tags