Module jEdit

Interface JEditVisitor

All Known Implementing Classes:
JEditVisitorAdapter, SaveCaretInfoVisitor

public interface JEditVisitor
A Visitor can visit a View, an EditPane or a JEditTextArea. You can also extend the default implementation, JEditVisitorAdapter To use this visitor.
Since:
jEdit 4.3pre13
Version:
$Id$
Author:
Matthieu Casanova
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    visit(EditPane editPane)
    Visit an EditPane.
    void
    visit(JEditTextArea textArea)
    Visit a view.
    void
    visit(View view)
    Visit a view.
  • Method Details

    • visit

      void visit(View view)
      Visit a view.
      Parameters:
      view - the visited view
    • visit

      void visit(EditPane editPane)
      Visit an EditPane.
      Parameters:
      editPane - the visited edit pane
    • visit

      void visit(JEditTextArea textArea)
      Visit a view.
      Parameters:
      textArea - the visited textArea