1 15 package org.apache.tapestry.util.io; 16 17 import java.io.IOException ; 18 19 import org.apache.tapestry.services.DataSqueezer; 20 21 33 34 public interface ISqueezeAdaptor 35 { 36 42 43 public String squeeze(DataSqueezer squeezer, Object data) throws IOException ; 44 45 51 52 public Object unsqueeze(DataSqueezer squeezer, String string) throws IOException ; 53 54 57 58 public void register(DataSqueezer squeezer); 59 } | Popular Tags |