1 16 package org.directwebremoting.extend; 17 18 22 public interface Converter 23 { 24 29 void setConverterManager(ConverterManager config); 30 31 42 Object convertInbound(Class paramType, InboundVariable data, InboundContext inctx) throws MarshallException; 43 44 58 OutboundVariable convertOutbound(Object data, OutboundContext outctx) throws MarshallException; 59 } 60 | Popular Tags |