1 16 package uk.ltd.getahead.dwr.compat; 17 18 import org.directwebremoting.extend.Converter; 19 import org.directwebremoting.extend.MarshallException; 20 import org.directwebremoting.extend.OutboundContext; 21 import org.directwebremoting.extend.OutboundVariable; 22 23 30 public abstract class BaseV10Converter implements Converter 31 { 32 35 public OutboundVariable convertOutbound(Object data, OutboundContext outctx) throws MarshallException 36 { 37 50 51 return null; 52 } 53 54 62 public abstract String convertOutbound(Object data, String varname, OutboundContext outctx) throws MarshallException; 63 } 64 | Popular Tags |