KickJava   Java API By Example, From Geeks To Geeks.

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


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.*;
14
15 /**
16  * @javadoc
17  *
18  * @author Gerard van de Looi
19  * @author Michiel Meeuwissen
20  * @since MMBase-1.6
21  * @version $Id: ByteHandler.java,v 1.27 2006/04/27 09:45:10 michiel Exp $
22  * @deprecated Use BinaryHandler
23  */

24
25 public class ByteHandler extends BinaryHandler {
26
27     public ByteHandler(FieldInfoTag tag) {
28         super(tag);
29     }
30 }
31
Popular Tags