AttributeDeserFactory.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ // $Id: AttributeDeserFactory.java,v 1.4.8.1 2005/03/02 14:19:54 tdiesler Exp $ package org.jboss.net.jmx.adaptor; import org.jboss.axis.encoding.ser.BaseDeserializerFactory; import javax.xml.namespace.QName; /** * An AttributeDeserFactory Factory * * @author <a href="mailto:a_taherkordi@users.sourceforge.net">Alireza Taherkordi</a> * @version $Revision: 1.4.8.1 $ */ public class AttributeDeserFactory extends BaseDeserializerFactory { public AttributeDeserFactory(Class javaType, QName xmlType) { super(AttributeDeser.class, xmlType, javaType); } }
AttributeDeserFactory.java |