Uses of Interface
org.gjt.sp.util.ProgressObserver

Packages that use ProgressObserver
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.buffer Buffer event listeners, and classes used to implement jEdit's document model. 
org.gjt.sp.jedit.io Virtual file system and multi-threaded I/O. 
org.gjt.sp.util Utility classes used by jEdit but that do not depend on jEdit itself. 
 

Uses of ProgressObserver in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit with parameters of type ProgressObserver
static boolean MiscUtilities.copyStream(int bufferSize, ProgressObserver progress, java.io.InputStream in, java.io.OutputStream out, boolean canStop)
          Deprecated. use IOUtilities.copyStream(int, org.gjt.sp.util.ProgressObserver, java.io.InputStream, java.io.OutputStream, boolean)
static boolean MiscUtilities.copyStream(ProgressObserver progress, java.io.InputStream in, java.io.OutputStream out, boolean canStop)
          Deprecated. use IOUtilities.copyStream(org.gjt.sp.util.ProgressObserver, java.io.InputStream, java.io.OutputStream, boolean)
 

Uses of ProgressObserver in org.gjt.sp.jedit.buffer
 

Classes in org.gjt.sp.jedit.buffer that implement ProgressObserver
 class BufferAutosaveRequest
          A buffer autosave request.
 class BufferInsertRequest
          A buffer insert request.
 class BufferIORequest
          A buffer I/O request.
 class BufferLoadRequest
          A buffer load request.
 class BufferSaveRequest
          A buffer save request.
 

Uses of ProgressObserver in org.gjt.sp.jedit.io
 

Methods in org.gjt.sp.jedit.io with parameters of type ProgressObserver
static boolean VFS.copy(ProgressObserver progress, java.lang.String sourcePath, java.lang.String targetPath, java.awt.Component comp, boolean canStop)
          Copy a file to another using VFS.
static boolean VFS.copy(ProgressObserver progress, VFS sourceVFS, java.lang.Object sourceSession, java.lang.String sourcePath, VFS targetVFS, java.lang.Object targetSession, java.lang.String targetPath, java.awt.Component comp, boolean canStop)
          Copy a file to another using VFS.
 

Uses of ProgressObserver in org.gjt.sp.util
 

Classes in org.gjt.sp.util that implement ProgressObserver
 class WorkRequest
          A subclass of the Runnable interface.
 

Methods in org.gjt.sp.util with parameters of type ProgressObserver
static boolean IOUtilities.copyStream(int bufferSize, ProgressObserver progress, java.io.InputStream in, java.io.OutputStream out, boolean canStop)
          Copy an input stream to an output stream.
static boolean IOUtilities.copyStream(ProgressObserver progress, java.io.InputStream in, java.io.OutputStream out, boolean canStop)
          Copy an input stream to an output stream with a buffer of 4096 bytes.