| java.lang.Object java.io.InputStream com.sun.svg.util.ProgressiveInputStream
All known Subclasses: com.sun.svg.component.LoadingScreen,
ProgressiveInputStream | public class ProgressiveInputStream extends InputStream (Code) | | The ProgressInputStream class provides a way to notify the
application of progress when loading a resource, given an expected resource
size.
|
Inner Class :public interface Listener | |
Constructor Summary | |
public | ProgressiveInputStream(InputStream pis, int lengthEstimate, Listener listener) Creates a new instance of ProgressiveInputStream
Parameters: pis - the proxied InputStream instance. |
ProgressiveInputStream | public ProgressiveInputStream(InputStream pis, int lengthEstimate, Listener listener)(Code) | | Creates a new instance of ProgressiveInputStream
Parameters: pis - the proxied InputStream instance. Should not be null Parameters: lengthEstimate - the anticipated input stream length. Should be strictly positive. Parameters: listener - the ProgressiveInputStream.Listener instance to notify when the input stream has been fully loaded. |
mark | public void mark(int readlimit)(Code) | | |
markSupported | public boolean markSupported()(Code) | | |
|
|