KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > webservice > encoding > ser > HexBinaryArrayDeserializerFactory


1 /**
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.webservice.encoding.ser;
8
9 // $Id: HexBinaryArrayDeserializerFactory.java,v 1.1.4.1 2005/03/02 14:32:29 tdiesler Exp $
10

11 import org.jboss.axis.encoding.ser.BaseDeserializerFactory;
12
13 /**
14  * DOCUMENT ME!
15  *
16  * @author thomas.diesler@jboss.org
17  */

18 public class HexBinaryArrayDeserializerFactory extends BaseDeserializerFactory
19 {
20    public HexBinaryArrayDeserializerFactory()
21    {
22       super(HexBinaryArrayDeserializer.class);
23    }
24 }
25
Popular Tags