1 /*************************************** 2 * * 3 * JBoss: The OpenSource J2EE WebOS * 4 * * 5 * Distributable under LGPL license. * 6 * See terms of license at gnu.org. * 7 * * 8 ***************************************/ 9 10 package org.jboss.util.coerce; 11 12 /** 13 * A bound CoersionHandler, which is bound to a specific class type. 14 * 15 * @version <tt>$Revision: 1.1 $</tt> 16 * @author <a HREF="mailto:jason@planet57.com">Jason Dillon</a> 17 */ 18 public abstract class BoundCoercionHandler 19 extends CoercionHandler 20 { 21 /** 22 * Get the target class type for this CoercionHandler. 23 * 24 * @return Class type 25 */ 26 public abstract Class getType(); 27 } 28