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

Packages that use EditPane
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.bufferset   
org.gjt.sp.jedit.gui Various GUI controls and dialog boxes. 
org.gjt.sp.jedit.msg EditBus messages. 
org.gjt.sp.jedit.search Search and replace classes. 
org.gjt.sp.jedit.visitors   
 

Uses of EditPane in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit that return EditPane
static EditPane EditPane.get(TextArea ta)
          Returns the EditPane of a TextArea.
 EditPane View.getEditPane()
          Returns the current edit pane.
 EditPane[] View.getEditPanes()
          Returns all edit panes.
 EditPane View.goToBuffer(Buffer buffer)
          If this buffer is open in one of the view's edit panes, sets focus to that edit pane.
 EditPane View.showBuffer(Buffer buffer)
          If this buffer is open in one of the view's edit panes, activates that edit pane.
 EditPane View.split(int orientation)
          Splits the view.
 EditPane View.splitHorizontally()
          Splits the view horizontally.
 EditPane View.splitVertically()
          Splits the view vertically.
 

Methods in org.gjt.sp.jedit with parameters of type EditPane
static void jEdit.closeBuffer(EditPane editPane, Buffer buffer)
          Close a buffer.
static void jEdit.moveBuffer(EditPane editPane, int oldPosition, int newPosition)
          Moves a buffer from a old position to a new position in the BufferSet used in an EditPane.
static Buffer jEdit.newFile(EditPane editPane)
          Creates a new `untitled' file.
static Buffer jEdit.newFile(EditPane editPane, java.lang.String dir)
          Creates a new `untitled' file.
static Buffer jEdit.openFile(EditPane editPane, java.lang.String path)
          Opens a file.
static Buffer jEdit.openFile(EditPane editPane, java.lang.String parent, java.lang.String path, boolean newFile, java.util.Hashtable props)
          Opens a file.
 

Uses of EditPane in org.gjt.sp.jedit.bufferset
 

Methods in org.gjt.sp.jedit.bufferset with parameters of type EditPane
 void BufferSetManager.addBuffer(EditPane editPane, Buffer buffer)
          Add a buffer into the current editPane of the given editPane.
 void BufferSetManager.moveBuffer(EditPane editPane, int oldPosition, int newPosition)
          Moves a buffer from a old position to a new position in the BufferSet used in an EditPane.
 void BufferSetManager.removeBuffer(EditPane editPane, Buffer buffer)
          Remove a buffer from the EditPane's bufferSet.
 

Uses of EditPane in org.gjt.sp.jedit.gui
 

Constructors in org.gjt.sp.jedit.gui with parameters of type EditPane
BufferSwitcher(EditPane editPane)
           
 

Uses of EditPane in org.gjt.sp.jedit.msg
 

Methods in org.gjt.sp.jedit.msg that return EditPane
 EditPane EditPaneUpdate.getEditPane()
          Returns the edit pane involved.
 

Constructors in org.gjt.sp.jedit.msg with parameters of type EditPane
BufferChanging(EditPane editPane, Buffer newBuffer)
           
EditPaneUpdate(EditPane editPane, java.lang.Object what)
          Creates a new edit pane update message.
PositionChanging(EditPane editPane)
           
PositionChanging(EditPane editPane, java.lang.Object whatt)
           
 

Uses of EditPane in org.gjt.sp.jedit.search
 

Methods in org.gjt.sp.jedit.search with parameters of type EditPane
 void HyperSearchResult.goTo(EditPane editPane)
           
 void HyperSearchNode.goTo(EditPane editPane)
           
 void HyperSearchFileNode.goTo(EditPane editPane)
           
 

Uses of EditPane in org.gjt.sp.jedit.visitors
 

Methods in org.gjt.sp.jedit.visitors with parameters of type EditPane
 void SaveCaretInfoVisitor.visit(EditPane editPane)
           
 void JEditVisitorAdapter.visit(EditPane editPane)
          Visit an EditPane.
 void JEditVisitor.visit(EditPane editPane)
          Visit an EditPane.