KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > typehandler > DefaultTypeHandler


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10
11 package org.mmbase.bridge.jsp.taglib.typehandler;
12
13 import org.mmbase.bridge.jsp.taglib.FieldInfoTag;
14
15 /**
16  * @javadoc
17  *
18  * @author Gerard van de Looi
19  * @author Michiel Meeuwissen
20  * @since MMBase-1.6
21  * @version $Id: DefaultTypeHandler.java,v 1.4 2003/08/15 19:38:00 michiel Exp $
22  */

23
24 public class DefaultTypeHandler extends AbstractTypeHandler {
25
26     /**
27      * Constructor for DefaultTypeHandler.
28      */

29     public DefaultTypeHandler(FieldInfoTag tag) {
30         super(tag);
31     }
32         
33 }
34
Popular Tags