Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.gjt.sp.jedit.Buffer

Uses of Buffer in org.gjt.sp.jedit
 

Fields in org.gjt.sp.jedit declared as Buffer
private static Buffer jEdit.buffersFirst
           
private static Buffer jEdit.buffersLast
           
private  Buffer Marker.buffer
           
(package private)  Buffer Macros.Recorder.buffer
           
private  Buffer EditPane.buffer
           
private  Buffer EditPane.recentBuffer
           
(package private)  Buffer Buffer.prev
           
(package private)  Buffer Buffer.next
           
 

Methods in org.gjt.sp.jedit that return Buffer
static Buffer jEdit.openFiles(View view, java.lang.String parent, java.lang.String[] args)
          Opens the file names specified in the argument array.
static Buffer jEdit.openFile(View view, java.lang.String path)
          Opens a file.
static Buffer jEdit.openFile(View view, java.lang.String parent, java.lang.String path, boolean readOnly, boolean newFile)
          Deprecated. The openFile() forms with the readOnly parameter should not be used. The readOnly prameter is no longer supported.
static Buffer jEdit.openFile(View view, java.lang.String parent, java.lang.String path, boolean readOnly, boolean newFile, java.util.Hashtable props)
          Deprecated. The openFile() forms with the readOnly parameter should not be used. The readOnly prameter is no longer supported.
static Buffer jEdit.openFile(View view, java.lang.String parent, java.lang.String path, boolean newFile, java.util.Hashtable props)
          Opens a file.
static Buffer jEdit.openTemporary(View view, java.lang.String parent, java.lang.String path, boolean newFile)
          Opens a temporary buffer.
static Buffer jEdit.newFile(View view)
          Creates a new `untitled' file.
static Buffer jEdit.newFile(View view, java.lang.String dir)
          Creates a new `untitled' file.
static Buffer jEdit._getBuffer(java.lang.String path)
          Returns the buffer with the specified path name.
static Buffer jEdit.getBuffer(java.lang.String path)
          Returns the buffer with the specified path name.
static Buffer[] jEdit.getBuffers()
          Returns an array of open buffers.
static Buffer jEdit.getFirstBuffer()
          Returns the first buffer.
static Buffer jEdit.getLastBuffer()
          Returns the last buffer.
 Buffer View.getBuffer()
          Returns the current edit pane's buffer.
static Buffer EditServer.handleClient(boolean restore, boolean newView, boolean newPlainView, java.lang.String parent, java.lang.String[] args)
           
 Buffer EditPane.getBuffer()
          Returns the current buffer.
 Buffer Buffer.getNext()
          Returns the next buffer in the list.
 Buffer Buffer.getPrev()
          Returns the previous buffer in the list.
 

Methods in org.gjt.sp.jedit with parameters of type Buffer
static void jEdit.commitTemporary(Buffer buffer)
          Adds a temporary buffer to the buffer list.
static boolean jEdit.closeBuffer(View view, Buffer buffer)
          Closes a buffer.
static void jEdit._closeBuffer(View view, Buffer buffer)
          Closes the buffer, even if it has unsaved changes.
static View jEdit.newView(View view, Buffer buffer)
          Creates a new view of a buffer.
static View jEdit.newView(View view, Buffer buffer, boolean plainView)
          Creates a new view of a buffer.
static View jEdit.newView(View view, Buffer buffer, View.ViewConfig config)
          Creates a new view.
(package private) static void jEdit.updatePosition(java.lang.String oldPath, Buffer buffer)
          If buffer sorting is enabled, this repositions the buffer.
private static void jEdit.gotoMarker(View view, Buffer buffer, java.lang.String marker)
           
private static void jEdit.addBufferToList(Buffer buffer)
           
private static void jEdit.removeBufferFromList(Buffer buffer)
           
 void View.setBuffer(Buffer buffer)
          Sets the current edit pane's buffer.
 EditPane View.goToBuffer(Buffer buffer)
          If this buffer is open in one of the view's edit panes, sets focus to that edit pane.
private  java.awt.Component View.restoreSplitConfig(Buffer buffer, java.lang.String splitConfig)
           
private  EditPane View.createEditPane(Buffer buffer)
           
static int TextUtilities.findMatchingBracket(Buffer buffer, int line, int offset)
          Returns the offset of the bracket matching the one at the specified offset of the buffer, or -1 if the bracket is unmatched (or if the character is not a bracket).
private static void Macros.recordMacro(View view, Buffer buffer, boolean temporary)
          Starts recording a macro.
 void EditPane.setBuffer(Buffer buffer)
          Sets the current buffer.
 

Constructors in org.gjt.sp.jedit with parameters of type Buffer
View(Buffer buffer, View.ViewConfig config)
           
Marker(Buffer buffer, char shortcut, int position)
           
Macros.Recorder(View view, Buffer buffer, boolean temporary)
           
EditPane(View view, Buffer buffer)