Serialized Form


Package net.jakubholy.jedit.autocomplete

Class net.jakubholy.jedit.autocomplete.ActionException extends java.lang.Exception implements Serializable

Serialized Fields

description

java.lang.String description
Description of the problem to display to the user.


causeType

int causeType
The type of the exception - specifies the cause in more detail.

Class net.jakubholy.jedit.autocomplete.CompletionPopup extends org.gjt.sp.jedit.gui.CompletionPopup implements Serializable

Serialized Fields

view

org.gjt.sp.jedit.View view
The View the user is using to edit the buffer for which we're displaying completions. Should equal to jEdit.getActiveView()?


word

java.lang.String word

prefManager

PreferencesManager prefManager
The prefix to complete


DOWN

int DOWN
A constant used by moveSelection - down arrow pressed.


UP

int UP
A constant used by moveSelection - up arrow pressed.

Class net.jakubholy.jedit.autocomplete.MaxWordsExceededException extends java.lang.Exception implements Serializable

Serialized Fields

lastWord

java.lang.String lastWord
The word that we wanted to remember but couldn't because of the limit.

Class net.jakubholy.jedit.autocomplete.TextAutocompletePane extends org.gjt.sp.jedit.AbstractOptionPane implements Serializable

Serialized Fields

isWordCode

javax.swing.JTextField isWordCode

minPrefixLength

javax.swing.JTextField minPrefixLength

acceptKeys

javax.swing.JTextField acceptKeys

disposeKeys

javax.swing.JTextField disposeKeys

selectionUpKeys

javax.swing.JTextField selectionUpKeys

selectionDownKeys

javax.swing.JTextField selectionDownKeys

isWordToRememberCode

javax.swing.JTextField isWordToRememberCode

minWordToRememberLength

javax.swing.JTextField minWordToRememberLength

maxCountOfWords

javax.swing.JTextField maxCountOfWords

isStartForBuffers

javax.swing.JCheckBox isStartForBuffers

isSelectionByNumberEnabled

javax.swing.JCheckBox isSelectionByNumberEnabled

selectionByNumberModifierMask

javax.swing.JComboBox selectionByNumberModifierMask

resetButton

javax.swing.JButton resetButton

filenameFilter

javax.swing.JTextField filenameFilter

isInclusionFilter

javax.swing.JRadioButton isInclusionFilter

isExclusionFilter

javax.swing.JRadioButton isExclusionFilter

isLoadModeKeywords

javax.swing.JCheckBox isLoadModeKeywords

isLoadMainModeOnly

javax.swing.JCheckBox isLoadMainModeOnly

Class net.jakubholy.jedit.autocomplete.WordListEditorUI extends javax.swing.JDialog implements Serializable

Serialized Fields

autoComplete

AutoComplete autoComplete
The autocomplete this editor is for.


addWordButton

javax.swing.JButton addWordButton

addWordField

javax.swing.JTextField addWordField

bufferNameLabel

javax.swing.JLabel bufferNameLabel

closeButton

javax.swing.JButton closeButton

deleteAllButton

javax.swing.JButton deleteAllButton

deleteButton

javax.swing.JButton deleteButton

forLabel

javax.swing.JLabel forLabel

headerLabel

javax.swing.JLabel headerLabel

headerPanel

javax.swing.JPanel headerPanel

mainPanel

javax.swing.JPanel mainPanel

footerPanel

javax.swing.JPanel footerPanel

forBufferPanel

javax.swing.JPanel forBufferPanel

modificationsPanel

javax.swing.JPanel modificationsPanel

buttonsPanel

javax.swing.JPanel buttonsPanel

wordList

javax.swing.JList wordList

wordListModel

javax.swing.DefaultListModel wordListModel

importButton

javax.swing.JButton importButton

exportButton

javax.swing.JButton exportButton

importExportPanel

javax.swing.JPanel importExportPanel

statusLabel

javax.swing.JLabel statusLabel

bufferName

java.lang.String bufferName

ignoreWordListEvents

boolean ignoreWordListEvents
Should I ignore modifications to the underlying word list (not redisplaying it)?

Class net.jakubholy.jedit.autocomplete.WordListEvent extends java.util.EventObject implements Serializable