1 18 package org.apache.batik.ext.awt.image.spi; 19 20 import java.io.InputStream ; 21 import java.io.StreamCorruptedException ; 22 23 import org.apache.batik.ext.awt.image.renderable.Filter; 24 import org.apache.batik.util.ParsedURL; 25 26 33 public interface StreamRegistryEntry extends RegistryEntry { 34 35 40 public int getReadlimit(); 41 42 54 public boolean isCompatibleStream(InputStream is) 55 throws StreamCorruptedException ; 56 57 72 public Filter handleStream(InputStream is, 73 ParsedURL origURL, 74 boolean needRawData); 75 } 76 77 | Popular Tags |