Serialized Form


Package org.fife.help

Class org.fife.help.HelpDialog extends javax.swing.JFrame implements Serializable

serialVersionUID: 1l

Serialized Fields

app

GUIApplication app

tabbedPane

javax.swing.JTabbedPane tabbedPane

root

javax.swing.tree.DefaultMutableTreeNode root

tocTree

javax.swing.JTree tocTree

rootVisible

boolean rootVisible

editorPane

javax.swing.JEditorPane editorPane

indexList

javax.swing.JList indexList

indexDisplayButton

javax.swing.JButton indexDisplayButton

indexField

javax.swing.JTextField indexField

searchList

javax.swing.JList searchList

searchDisplayButton

javax.swing.JButton searchDisplayButton

listTopicsButton

javax.swing.JButton listTopicsButton

searchField

javax.swing.JTextField searchField

backButton

javax.swing.JButton backButton

forwardButton

javax.swing.JButton forwardButton

searchString

java.lang.String searchString

highlightSearchString

boolean highlightSearchString

history

java.util.ArrayList history

historyPos

int historyPos

updateHistory

boolean updateHistory

clickedOnTOCTree

boolean clickedOnTOCTree

keywordToFindLabel

javax.swing.JLabel keywordToFindLabel

keywordToFindLabel2

javax.swing.JLabel keywordToFindLabel2

topicToDisplayLabel

javax.swing.JLabel topicToDisplayLabel

baseDir

java.lang.String baseDir

baseURL

java.net.URL baseURL

noMatchHTML

java.lang.String noMatchHTML

webUrlsInRealBrowser

boolean webUrlsInRealBrowser

treeBundle

java.util.ResourceBundle treeBundle

indexElements

java.lang.String[] indexElements


Package org.fife.jgoodies.looks.common

Class org.fife.jgoodies.looks.common.ShadowPopupBorder extends javax.swing.border.AbstractBorder implements Serializable


Package org.fife.print

Class org.fife.print.PrintPreviewDialog extends EscapableDialog implements Serializable

serialVersionUID: 1l

Serialized Fields

previewPanel

javax.swing.JPanel previewPanel

pageImage

PrintPreviewDialog.PagePreview[] pageImage

masterImage

java.awt.print.Printable masterImage

printButton

javax.swing.JButton printButton

nextPageButton

javax.swing.JButton nextPageButton

prevPageButton

javax.swing.JButton prevPageButton

closeButton

javax.swing.JButton closeButton

sizeComboBox

javax.swing.JComboBox sizeComboBox

numPagesComboBox

javax.swing.JComboBox numPagesComboBox

scale

int scale

pageWidth

int pageWidth

pageHeight

int pageHeight

currentPage

int currentPage

numVisiblePages

int numVisiblePages

numPages

int numPages

zoomInCursor

java.awt.Cursor zoomInCursor

zoomOutCursor

java.awt.Cursor zoomOutCursor

pagePreviewBorder

javax.swing.border.Border pagePreviewBorder

pageFormat

java.awt.print.PageFormat pageFormat


Package org.fife.ui

Class org.fife.ui.AboutDialog extends EscapableDialog implements Serializable

serialVersionUID: 1l

Serialized Fields

okButton

javax.swing.JButton okButton

licenseButton

javax.swing.JButton licenseButton

tabbedPane

javax.swing.JTabbedPane tabbedPane

appPanel

java.awt.Component appPanel

Class org.fife.ui.AboutDialog.LicenseDialog extends EscapableDialog implements Serializable

serialVersionUID: 1l

Class org.fife.ui.ColorCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

serialVersionUID: 1l

Class org.fife.ui.CustomizableToolBar extends javax.swing.JToolBar implements Serializable

serialVersionUID: 1l

Serialized Fields

popupMenu

javax.swing.JPopupMenu popupMenu
The popup menu for the toolbar.


addRemoveMenu

javax.swing.JMenu addRemoveMenu
The menu for adding/removing toolbar buttons.


mia

javax.swing.event.MouseInputAdapter mia
The mouse listener that listens for right-clicks on this toolbar.


showText

boolean showText
Whether text labels should be on the buttons, as well as images.

Class org.fife.ui.EscapableDialog extends javax.swing.JDialog implements Serializable

Class org.fife.ui.FileExplorerTableModel extends javax.swing.table.AbstractTableModel implements Serializable

serialVersionUID: 1l

Serialized Fields

tableModel

javax.swing.table.TableModel tableModel

viewToModel

org.fife.ui.FileExplorerTableModel.Row[] viewToModel

modelToView

int[] modelToView

tableHeader

javax.swing.table.JTableHeader tableHeader

mouseListener

org.fife.ui.FileExplorerTableModel.MouseHandler mouseListener

tableModelListener

javax.swing.event.TableModelListener tableModelListener

columnComparators

java.util.Map columnComparators

sortingColumns

java.util.List sortingColumns

table

javax.swing.JTable table

Class org.fife.ui.FontDialog extends javax.swing.JDialog implements Serializable

serialVersionUID: 1l

Serialized Fields

fontList

javax.swing.JList fontList

fontSizeList

javax.swing.JList fontSizeList

sampleTextLabel

javax.swing.JLabel sampleTextLabel

fontFormatPanel

javax.swing.JPanel fontFormatPanel

samplePanel

javax.swing.JPanel samplePanel

boldCheckBox

javax.swing.JCheckBox boldCheckBox

italicCheckBox

javax.swing.JCheckBox italicCheckBox

underlineCheckBox

javax.swing.JCheckBox underlineCheckBox

properties

int properties

size

int size

selectedFont

java.awt.Font selectedFont

selectedColor

java.awt.Color selectedColor

fontChooserLabel

javax.swing.JLabel fontChooserLabel

styleLabel

java.lang.String styleLabel

sizeLabel

javax.swing.JLabel sizeLabel

sampleLabel

java.lang.String sampleLabel

Class org.fife.ui.FontSelector extends javax.swing.JPanel implements Serializable

serialVersionUID: 1l

Serialized Fields

labelComp

javax.swing.JComponent labelComp

field

org.fife.ui.FontSelector.FontTextField field

underline

boolean underline

browseButton

RButton browseButton

underlineSelectable

boolean underlineSelectable

colorSelectable

boolean colorSelectable

fontColor

java.awt.Color fontColor

Class org.fife.ui.FSATextField extends javax.swing.JTextField implements Serializable

serialVersionUID: 1l

Serialized Fields

directoriesOnlyFilenameFilter

java.io.FilenameFilter directoriesOnlyFilenameFilter
File filter used if directories-only mode is set.


directory

java.io.File directory
These are an attempt to speed things up in the "common" case. If the user types a letter into the text field but the last position of a file separator is the same as it was last time, then the "current directory" hasn't changed, so we can just keep the File instance for the directory we already have. We do this because doing a regex match loop through multiple file names can be slow on some systems.


dirName

java.lang.String dirName

autoCompleteFileName

boolean autoCompleteFileName
Whether the next matching filename is auto-inserted when the drop-down list is visible. This property is only honored when this text field is "file system aware."


fileList

javax.swing.JList fileList
Variables used by the text field to implement the "combo-box" style list.


fileListModel

javax.swing.DefaultListModel fileListModel

scrollPane

javax.swing.JScrollPane scrollPane

popupWindow

javax.swing.JWindow popupWindow

directoriesOnly

boolean directoriesOnly

lastCount

long lastCount

ignoreDocumentUpdates

boolean ignoreDocumentUpdates

listValueChangedRunnable

java.lang.Runnable listValueChangedRunnable

containedFiles

java.lang.String[] containedFiles
Cached values of the files in the current directory and the number of files in the current directory.


num

int num

currentDirectory

java.lang.String currentDirectory
The "current directory;" if the user is typing a relative pathname (i.e., not absolute), then assume this is the root directory.


fileSystemAware

boolean fileSystemAware
Whether or not the text field pops up a list of matching files.


parent

java.awt.Window parent

contentPane

javax.swing.JPanel contentPane

Class org.fife.ui.Hyperlink extends javax.swing.JLabel implements Serializable

serialVersionUID: 1l

Serialized Fields

text

java.lang.String text

address

java.lang.String address

Class org.fife.ui.ImagePreviewPane extends javax.swing.JComponent implements Serializable

serialVersionUID: 1l

Serialized Fields

imageLabel

javax.swing.JLabel imageLabel

Class org.fife.ui.MaxWidthComboBox extends javax.swing.JComboBox implements Serializable

serialVersionUID: 1l

Serialized Fields

maxWidth

int maxWidth
The width of this combo box will never be greater than this value.

Class org.fife.ui.MenuButton extends javax.swing.JButton implements Serializable

serialVersionUID: 1l

Serialized Fields

popupMenu

javax.swing.JPopupMenu popupMenu

compoundIcon

org.fife.ui.MenuButton.CompoundIcon compoundIcon

Class org.fife.ui.OptionsDialog extends EscapableDialog implements Serializable

Serialized Fields

optionsPanels

OptionsDialogPanel[] optionsPanels
The panels the use can display.


optionTree

javax.swing.JTree optionTree

treeModel

javax.swing.tree.DefaultTreeModel treeModel

root

javax.swing.tree.DefaultMutableTreeNode root

optionTreeScrollPane

javax.swing.JScrollPane optionTreeScrollPane

okButton

RButton okButton

applyButton

RButton applyButton

cancelButton

RButton cancelButton

currentOptionPanel

javax.swing.JPanel currentOptionPanel

currentOptionPanelLayout

java.awt.CardLayout currentOptionPanelLayout

titledPanel

TitledPanel titledPanel

Class org.fife.ui.OptionsDialogPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

name

java.lang.String name
The name of this options panel to be used in the the options dialog's selection tree.


id

java.lang.String id
An identifier for this option panel. Non-localized so it can be used in code.


icon

javax.swing.Icon icon
The icon to use for this options panel in the options dialog, if any.


hasUnsavedChanges

boolean hasUnsavedChanges
Whether or not this panel has any unsaved changes. The Options panel should set this whenever an Option value is changed by the user, but it doesn't have to clear it (this is done by the parent OptionsDialog).


childPanels

java.util.ArrayList childPanels
A collection of "child" option panels in the options dialog tree.


parent

OptionsDialogPanel parent
Parent panel. null if no parent panel.

Class org.fife.ui.RButton extends javax.swing.JButton implements Serializable

serialVersionUID: 1l

Class org.fife.ui.RColorButton extends RButton implements Serializable

serialVersionUID: 1l

Class org.fife.ui.RColorSwatchesButton extends RColorButton implements Serializable

serialVersionUID: 1l

Serialized Fields

popup

org.fife.ui.RColorSwatchesButton.ColorPopupMenu popup

popupListener

RColorSwatchesButton.PopupListener popupListener

Class org.fife.ui.RComboBoxModel extends javax.swing.DefaultComboBoxModel implements Serializable

serialVersionUID: 1l

Serialized Fields

maxNumElements

int maxNumElements
The number of items the combo box will remember.

Class org.fife.ui.RecentFilesMenu extends javax.swing.JMenu implements Serializable

Serialized Fields

maxFileHistorySize

int maxFileHistorySize

fileHistory

java.util.List fileHistory
A cache of the full paths of files in this menu, to allow us to know the index of a specific item to move it to the top later.

Class org.fife.ui.ResizableFrameContentPane extends javax.swing.JPanel implements Serializable

serialVersionUID: 1l

Serialized Fields

gripIcon

SizeGripIcon gripIcon

Class org.fife.ui.RFileChooser extends javax.swing.JFileChooser implements Serializable

serialVersionUID: 1l

Class org.fife.ui.RListSelectionModel extends javax.swing.DefaultListSelectionModel implements Serializable

serialVersionUID: 1l

Class org.fife.ui.RScrollPane extends javax.swing.JScrollPane implements Serializable

serialVersionUID: 1l

Serialized Fields

vertSBMenu

javax.swing.JPopupMenu vertSBMenu

horizSBMenu

javax.swing.JPopupMenu horizSBMenu

mouseX

int mouseX

mouseY

int mouseY

Class org.fife.ui.RTreeSelectionModel extends javax.swing.tree.DefaultTreeSelectionModel implements Serializable

serialVersionUID: 1l

Class org.fife.ui.SelectableLabel extends javax.swing.JTextPane implements Serializable

Class org.fife.ui.SpecialValueComboBox extends javax.swing.JComboBox implements Serializable

serialVersionUID: 1l

Serialized Fields

values

java.util.Vector values

Class org.fife.ui.SplashScreen extends javax.swing.JWindow implements Serializable

serialVersionUID: 1l

Serialized Fields

imageLabel

javax.swing.JLabel imageLabel

progressBar

org.fife.ui.SplashScreen.ProgressBar progressBar

Class org.fife.ui.StatusBar extends StatusBarPanel implements Serializable

serialVersionUID: 1l

Serialized Fields

statusMessage

javax.swing.JLabel statusMessage

defaultMessage

java.lang.String defaultMessage

gridBag

java.awt.GridBagLayout gridBag

sizeGrip

SizeGrip sizeGrip

Class org.fife.ui.StatusBarPanel extends javax.swing.JPanel implements Serializable

serialVersionUID: 1l

Serialized Fields

shadowEnabled

boolean shadowEnabled
Whether or not the "shadow" effect is on.

Class org.fife.ui.TabbedPaneTransferHandler extends javax.swing.TransferHandler implements Serializable

serialVersionUID: 1l

Serialized Fields

tabFlavor

java.awt.datatransfer.DataFlavor tabFlavor
The data flavor corresponding to the above MIME type.


mouseLocation

java.awt.Point mouseLocation
The location of the mouse cursor throughout the drag-and-drop. This is here because of a deficiency in TransferHandler's design; you have no way of knowing the exact drop location in the component with a plain TransferHandler unless you implement DropTargetListener and get it that way.


currentTransferable

TabbedPaneTransferHandler.TabTransferable currentTransferable

Class org.fife.ui.TextColorCellRenderer extends ColorCellRenderer implements Serializable

serialVersionUID: 1l

Class org.fife.ui.TitledPanel extends javax.swing.JPanel implements Serializable

serialVersionUID: 1l

Serialized Fields

label

javax.swing.JLabel label

iconLabel

javax.swing.JLabel iconLabel

Class org.fife.ui.ToolTipTree extends javax.swing.JTree implements Serializable

serialVersionUID: 1l

Serialized Fields

toolTipsEnabled

boolean toolTipsEnabled


Package org.fife.ui.app

Class org.fife.ui.app.AbstractGUIApplication extends javax.swing.JFrame implements Serializable

Serialized Fields

aboutDialog

AboutDialog aboutDialog
The About dialog.


toolBar

CustomizableToolBar toolBar
The toolbar.


statusBar

StatusBar statusBar
The status bar.


actionMap

java.util.HashMap actionMap
The map of actions for this application.


resourceBundle

java.util.ResourceBundle resourceBundle
This application's resource bundle.


installLocation

java.lang.String installLocation
The directory in which this application was installed.


language

java.lang.String language
Locale language string (e.g., "en" or "es").


contentPane

javax.swing.JPanel contentPane
The content pane.


toolBarPanels

javax.swing.JPanel[] toolBarPanels
Panels containing toolbars. At least one of these always exists; it contains the main toolbar. The last-indexed panel will contain a toolbar and the mainContentPanel. Each increasing toolbar panel is contained in the previous one (i.e., if there are 3 of these, 0 contains 1 and 1 contains 2, which also contains mainContentPanel).


mainContentPanel

javax.swing.JPanel mainContentPanel
This panel contains actualContentPane. This panel is here so that the subclass AbstractPluggableGUIApplication can also place GUI plugins inside of it.


actualContentPane

javax.swing.JPanel actualContentPane
This panel contains the actual content of the application (i.e., when the use calls getContentPane to add stuff, this is the panel they get).


lafManager

ThirdPartyLookAndFeelManager lafManager
Used to dynamically load 3rd-party LookAndFeels.


os

int os
An integer constant representing the OS, such as OS_WINDOWS or OS_LINUX.

Class org.fife.ui.app.AbstractPluggableGUIApplication extends AbstractGUIApplication implements Serializable

Serialized Fields

pluginList

java.util.List pluginList
List of installed plug-ins.


pluginLoader

PluginLoader pluginLoader
The class loader used for plugin stuff.

Class org.fife.ui.app.ExceptionDialog extends EscapableDialog implements Serializable

Serialized Fields

descArea

SelectableLabel descArea

detailsButton

org.fife.ui.app.ExceptionDialog.DetailsButton detailsButton

textPanel

javax.swing.JPanel textPanel

desc

java.lang.String desc

Class org.fife.ui.app.GUIApplication.AboutAction extends StandardAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.app.GUIApplication.ExitAction extends StandardAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.app.GUIApplication.HelpAction extends StandardAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.app.GUIApplication.ToggleStatusBarAction extends StandardAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.app.GUIApplication.ToggleToolBarAction extends StandardAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.app.InvalidPluginException extends java.lang.Exception implements Serializable

serialVersionUID: 182575532328519085l

Class org.fife.ui.app.MenuBar extends javax.swing.JMenuBar implements Serializable

Serialized Fields

namedMenus

java.util.Map namedMenus
Registry of "named" menus, so you can grab a specific menu without knowing the order of menus in this menu bar.

Class org.fife.ui.app.PluginOptionsDialogPanel extends OptionsDialogPanel implements Serializable

Serialized Fields

plugin

Plugin plugin

Class org.fife.ui.app.StandardAction extends javax.swing.AbstractAction implements Serializable

Serialized Fields

app

GUIApplication app
The parent GUI application.

Class org.fife.ui.app.StatusBarPlugin extends StatusBarPanel implements Serializable

Serialized Fields

parentOptionPanelID

java.lang.String parentOptionPanelID

Class org.fife.ui.app.WizardDialogInfoPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

header

java.lang.String header

Class org.fife.ui.app.WizardPluginDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

infoContainer

org.fife.ui.app.WizardPluginDialog.HeaderPanel infoContainer

infoPanelLayout

java.awt.CardLayout infoPanelLayout

infoPanel

javax.swing.JPanel infoPanel

cancelButton

RButton cancelButton

backButton

RButton backButton

nextButton

RButton nextButton

finishedButton

RButton finishedButton

plugin

WizardPlugin plugin

panels

WizardDialogInfoPanel[] panels

currentPanel

int currentPanel

wizardProperties

java.util.HashMap wizardProperties

listener

org.fife.ui.app.WizardPluginDialog.Listener listener

retVal

int retVal


Package org.fife.ui.breadcrumbbar

Class org.fife.ui.breadcrumbbar.BreadcrumbBar extends javax.swing.JComponent implements Serializable

Serialized Fields

shownLocation

java.io.File shownLocation

iconLabel

javax.swing.JLabel iconLabel

buttonPanel

javax.swing.JPanel buttonPanel

dirField

FSATextField dirField

backButton

javax.swing.JToggleButton backButton

listener

org.fife.ui.breadcrumbbar.BreadcrumbBar.Listener listener

horizArrowIcon

javax.swing.Icon horizArrowIcon

downArrowIcon

javax.swing.Icon downArrowIcon

backIcon

javax.swing.Icon backIcon

Class org.fife.ui.breadcrumbbar.BreadcrumbBarTest extends javax.swing.JFrame implements Serializable

Serialized Fields

tf

javax.swing.JTextField tf

Class org.fife.ui.breadcrumbbar.ScrollableJPopupMenu extends javax.swing.JPopupMenu implements Serializable

Serialized Fields

visibleRowCount

int visibleRowCount

children

java.util.List children

previousItem

javax.swing.JMenuItem previousItem

nextItem

javax.swing.JMenuItem nextItem

previousTimer

javax.swing.Timer previousTimer

nextTimer

javax.swing.Timer nextTimer

firstItemIndex

int firstItemIndex


Package org.fife.ui.dockablewindows

Class org.fife.ui.dockablewindows.Actions.CloseAction extends org.fife.ui.dockablewindows.Actions.DockableActionBase implements Serializable

Class org.fife.ui.dockablewindows.Actions.RedockAction extends org.fife.ui.dockablewindows.Actions.DockableActionBase implements Serializable

Serialized Fields

location

int location

Class org.fife.ui.dockablewindows.DockableWindow extends javax.swing.JPanel implements Serializable

Serialized Fields

position

int position
The position of the dockable window with respect to the main application window. One of TOP, LEFT, BOTTOM, RIGHT, or FLOATING.


active

boolean active
Whether this dockable window is active.


dockableWindowName

java.lang.String dockableWindowName
The "name" of this dockable window (displayed in tabs, etc.).


dockableWindowTitle

java.lang.String dockableWindowTitle
The "title" of this dockable window (displayed in the title bar). If this is null, the name will be displayed instead.


icon

javax.swing.Icon icon
The icon for this window.

Class org.fife.ui.dockablewindows.DockableWindowEvent extends java.util.EventObject implements Serializable

serialVersionUID: 1l

Serialized Fields

oldPosition

int oldPosition

newPosition

int newPosition

Class org.fife.ui.dockablewindows.DockableWindowPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

panels

DockableWindowPanel.ContentPanel[] panels

floatingWindows

FloatingWindow[] floatingWindows

listeningTo

java.util.SortedSet listeningTo

dockingStyle

int dockingStyle

windowList

java.util.List windowList

panelToLocationMap

int[] panelToLocationMap

Class org.fife.ui.dockablewindows.DockableWindowScrollPane extends RScrollPane implements Serializable


Package org.fife.ui.modifiabletable

Class org.fife.ui.modifiabletable.ModifiableTable extends javax.swing.JPanel implements Serializable

Serialized Fields

table

javax.swing.JTable table

addButton

RButton addButton

removeButton

RButton removeButton

modifyButton

RButton modifyButton

moveUpButton

RButton moveUpButton

moveDownButton

RButton moveDownButton

rowHandler

RowHandler rowHandler

listener

ModifiableTable.Listener listener

listenerList

javax.swing.event.EventListenerList listenerList

Class org.fife.ui.modifiabletable.ModifiableTableChangeEvent extends java.util.EventObject implements Serializable

serialVersionUID: 1l

Serialized Fields

change

int change

row

int row


Package org.fife.ui.rtextfilechooser

Class org.fife.ui.rtextfilechooser.Actions.AddToFavoritesAction extends Actions.FileChooserAction implements Serializable

Class org.fife.ui.rtextfilechooser.Actions.CopyAction extends Actions.FileChooserAction implements Serializable

Serialized Fields

chooser

FileSelector chooser

Class org.fife.ui.rtextfilechooser.Actions.DeleteAction extends Actions.FileChooserAction implements Serializable

Serialized Fields

hard

boolean hard

Class org.fife.ui.rtextfilechooser.Actions.FileChooserAction extends javax.swing.AbstractAction implements Serializable

Serialized Fields

chooser

RTextFileChooser chooser

Class org.fife.ui.rtextfilechooser.Actions.RefreshAction extends Actions.FileChooserAction implements Serializable

Class org.fife.ui.rtextfilechooser.Actions.RenameAction extends Actions.FileChooserAction implements Serializable

Class org.fife.ui.rtextfilechooser.Actions.SystemOpenAction extends Actions.FileChooserAction implements Serializable

Serialized Fields

chooser

FileSelector chooser

methodName

java.lang.String methodName

Class org.fife.ui.rtextfilechooser.Actions.UpOneLevelAction extends Actions.FileChooserAction implements Serializable

Class org.fife.ui.rtextfilechooser.DirectoryTree extends FileSystemTree implements Serializable

Class org.fife.ui.rtextfilechooser.FileChooserFavoritesOptionPanel extends OptionsDialogPanel implements Serializable

serialVersionUID: 1l

Serialized Fields

model

org.fife.ui.rtextfilechooser.FileChooserFavoritesOptionPanel.FavoritesTableModel model

modifiableTable

ModifiableTable modifiableTable

Class org.fife.ui.rtextfilechooser.FileSystemTree extends ToolTipTree implements Serializable

Serialized Fields

treeModel

FileSystemTree.FileSystemTreeModel treeModel

root

FileSystemTree.FileSystemTreeNode root

rootNameCache

java.util.HashMap rootNameCache

fileSystemView

javax.swing.filechooser.FileSystemView fileSystemView

iconManager

FileChooserIconManager iconManager

popup

javax.swing.JPopupMenu popup

openInMenu

javax.swing.JMenu openInMenu

systemEditAction

Actions.SystemOpenAction systemEditAction

systemViewAction

Actions.SystemOpenAction systemViewAction

copyAction

Actions.CopyAction copyAction

pasteAction

FileSystemTreeActions.PasteAction pasteAction

deleteAction

FileSystemTreeActions.DeleteAction deleteAction

hardDeleteAction

FileSystemTreeActions.DeleteAction hardDeleteAction

newFileAction

FileSystemTreeActions.NewFileAction newFileAction

newFolderAction

FileSystemTreeActions.NewFolderAction newFolderAction

refreshAction

FileSystemTreeActions.RefreshAction refreshAction

cellRenderer

org.fife.ui.rtextfilechooser.FileSystemTree.FileSystemTreeRenderer cellRenderer

Class org.fife.ui.rtextfilechooser.FileSystemTree.FileSystemTreeModel extends javax.swing.tree.DefaultTreeModel implements Serializable

Class org.fife.ui.rtextfilechooser.FileSystemTree.FileSystemTreeNode extends javax.swing.tree.DefaultMutableTreeNode implements Serializable

Class org.fife.ui.rtextfilechooser.RDirectoryChooser extends javax.swing.JDialog implements Serializable

Serialized Fields

okButton

RButton okButton

cancelButton

RButton cancelButton

directoryTree

DirectoryTree directoryTree

chosenDirectory

java.lang.String chosenDirectory

Class org.fife.ui.rtextfilechooser.RTextFileChooser extends ResizableFrameContentPane implements Serializable

Serialized Fields

fileSystemView

javax.swing.filechooser.FileSystemView fileSystemView

itemListener

java.awt.event.ItemListener itemListener

acceptAllFilter

AcceptAllFileFilter acceptAllFilter

lookInBreadcrumbBar

BreadcrumbBar lookInBreadcrumbBar

fileNameTextField

FSATextField fileNameTextField

filterCombo

javax.swing.JComboBox filterCombo

encodingCombo

javax.swing.JComboBox encodingCombo

textFieldListener

org.fife.ui.rtextfilechooser.RTextFileChooser.TextFieldListener textFieldListener

upOneLevelButton

javax.swing.JButton upOneLevelButton

newFolderButton

javax.swing.JButton newFolderButton

viewButton

MenuButton viewButton

favoritesButton

MenuButton favoritesButton

acceptButton

javax.swing.JButton acceptButton

cancelButton

javax.swing.JButton cancelButton

view

RTextFileChooserView view
The "view" of the current directory (either list, details or icons).


viewScrollPane

RScrollPane viewScrollPane

popupMenu

javax.swing.JPopupMenu popupMenu
The context menu used by views.


globFilter

WildcardFileFilter globFilter
The "glob" (wildcard) filter that shows all files.


upFolderIcon

javax.swing.Icon upFolderIcon

newFolderIcon

javax.swing.Icon newFolderIcon

detailsViewIcon

javax.swing.Icon detailsViewIcon

listViewIcon

javax.swing.Icon listViewIcon

iconsViewIcon

javax.swing.Icon iconsViewIcon

favoritesIcon

javax.swing.Icon favoritesIcon

iconManager

FileChooserIconManager iconManager

customTitle

java.lang.String customTitle

saveButtonText

java.lang.String saveButtonText

saveDialogTitleText

java.lang.String saveDialogTitleText

saveButtonToolTipText

java.lang.String saveButtonToolTipText

saveButtonMnemonic

int saveButtonMnemonic

openButtonText

java.lang.String openButtonText

openDialogTitleText

java.lang.String openDialogTitleText

openButtonToolTipText

java.lang.String openButtonToolTipText

openButtonMnemonic

int openButtonMnemonic

newFolderPrompt

java.lang.String newFolderPrompt

errorNewDirPrompt

java.lang.String errorNewDirPrompt

errorDialogTitle

java.lang.String errorDialogTitle

directoryText

java.lang.String directoryText

fileText

java.lang.String fileText

nameString

java.lang.String nameString

sizeString

java.lang.String sizeString

typeString

java.lang.String typeString

statusString

java.lang.String statusString

lastModifiedString

java.lang.String lastModifiedString

openString

java.lang.String openString

noFavoritesDefinedString

java.lang.String noFavoritesDefinedString

favoriteDNERemoveString

java.lang.String favoriteDNERemoveString

systemEditAction

Actions.SystemOpenAction systemEditAction

systemViewAction

Actions.SystemOpenAction systemViewAction

copyAction

Actions.CopyAction copyAction

deleteAction

Actions.DeleteAction deleteAction

hardDeleteAction

Actions.DeleteAction hardDeleteAction

refreshAction

Actions.RefreshAction refreshAction

renameAction

Actions.RenameAction renameAction

upOneLevelAction

Actions.UpOneLevelAction upOneLevelAction

mode

int mode

multiSelectionEnabled

boolean multiSelectionEnabled

fileSelectionMode

int fileSelectionMode

fileSystemAware

boolean fileSystemAware

autoCompleteFileNames

boolean autoCompleteFileNames

encoding

java.lang.String encoding

filterToSelect

javax.swing.filechooser.FileFilter filterToSelect

tempInfo

FileTypeInfo tempInfo

defaultFileColor

java.awt.Color defaultFileColor

customColors

java.util.HashMap customColors

showHiddenFiles

boolean showHiddenFiles

hiddenFileColor

java.awt.Color hiddenFileColor

styleOpenFiles

boolean styleOpenFiles

openFilesStyle

int openFilesStyle

currentDirectory

java.io.File currentDirectory

selectedFiles

java.io.File[] selectedFiles

lastSize

java.awt.Dimension lastSize

lastType

int lastType

fileFilters

java.util.Vector fileFilters

currentFileFilter

javax.swing.filechooser.FileFilter currentFileFilter

isChangingDirectories

boolean isChangingDirectories

filesToSelect

java.io.File[] filesToSelect

openedFiles

java.io.File[] openedFiles

dialog

javax.swing.JDialog dialog

guiInitialized

boolean guiInitialized

showEncodingCombo

boolean showEncodingCombo

favoriteList

java.util.List favoriteList
Sorted list of "favorite" directories.


retVal

int retVal
The return value given after showOpenDialog or showSaveDialog.

Class org.fife.ui.rtextfilechooser.RTextFileChooserOptionPanel extends OptionsDialogPanel implements Serializable

serialVersionUID: 1l

Serialized Fields

hiddenFilesCheckBox

javax.swing.JCheckBox hiddenFilesCheckBox

offerSuggestionsCB

javax.swing.JCheckBox offerSuggestionsCB

autoCompleteCheckBox

javax.swing.JCheckBox autoCompleteCheckBox

hiddenColorButton

RColorSwatchesButton hiddenColorButton

colorTableModel

org.fife.ui.rtextfilechooser.RTextFileChooserOptionPanel.ColorTableModel colorTableModel

openFilesStyleCombo

SpecialValueComboBox openFilesStyleCombo

styleOpenFilesCheckBox

javax.swing.JCheckBox styleOpenFilesCheckBox


Package org.fife.util

Class org.fife.util.DynamicIntArray extends java.lang.Object implements Serializable

Serialized Fields

data

int[] data

size

int size


Package org.fife.rtext

Class org.fife.rtext.AbstractMainView extends javax.swing.JPanel implements Serializable

Serialized Fields

currentTextArea

RTextEditorPane currentTextArea

findDialog

FindDialog findDialog

replaceDialog

ReplaceDialog replaceDialog

searchStrings

java.util.Vector searchStrings

searchingForward

boolean searchingForward

searchMatchCase

boolean searchMatchCase

searchWholeWord

boolean searchWholeWord

searchRegExpression

boolean searchRegExpression

searchMarkAll

boolean searchMarkAll

lineNumbersEnabled

boolean lineNumbersEnabled

lineWrapEnabled

boolean lineWrapEnabled

defaultLineTerminator

java.lang.String defaultLineTerminator

defaultEncoding

java.lang.String defaultEncoding

guessFileContentType

boolean guessFileContentType

findInFilesDialog

FindInFilesDialog findInFilesDialog

replaceInFilesDialog

ReplaceInFilesDialog replaceInFilesDialog

goToDialog

GoToDialog goToDialog

textMode

int textMode

tabSize

int tabSize

emulateTabsWithWhitespace

boolean emulateTabsWithWhitespace

printFont

java.awt.Font printFont

caretColor

java.awt.Color caretColor

selectionColor

java.awt.Color selectionColor

backgroundObject

java.lang.Object backgroundObject

imageAlpha

float imageAlpha

backgroundImageFileName

java.lang.String backgroundImageFileName

owner

RText owner

syntaxFilters

SyntaxFilters syntaxFilters

highlightCurrentLine

boolean highlightCurrentLine

currentLineColor

java.awt.Color currentLineColor

highlightModifiedDocDisplayNames

boolean highlightModifiedDocDisplayNames

modifiedDocumentDisplayNameColor

java.awt.Color modifiedDocumentDisplayNameColor

checkForModification

boolean checkForModification

modificationCheckDelay

long modificationCheckDelay

bracketMatchingEnabled

boolean bracketMatchingEnabled

matchedBracketBGColor

java.awt.Color matchedBracketBGColor

matchedBracketBorderColor

java.awt.Color matchedBracketBorderColor

marginLineEnabled

boolean marginLineEnabled

marginLinePosition

int marginLinePosition

marginLineColor

java.awt.Color marginLineColor

hyperlinksEnabled

boolean hyperlinksEnabled

hyperlinkColor

java.awt.Color hyperlinkColor

hyperlinkModifierKey

int hyperlinkModifierKey

whitespaceVisible

boolean whitespaceVisible

showEOLMarkers

boolean showEOLMarkers

showTabLines

boolean showTabLines

tabLinesColor

java.awt.Color tabLinesColor

rememberWhitespaceLines

boolean rememberWhitespaceLines

autoInsertClosingCurlys

boolean autoInsertClosingCurlys

aaEnabled

boolean aaEnabled

fractionalMetricsEnabled

boolean fractionalMetricsEnabled

markAllHighlightColor

java.awt.Color markAllHighlightColor

markOccurrences

boolean markOccurrences

markOccurrencesColor

java.awt.Color markOccurrencesColor

roundedSelectionEdges

boolean roundedSelectionEdges

caretBlinkRate

int caretBlinkRate

carets

int[] carets

doFileSizeCheck

boolean doFileSizeCheck

maxFileSize

float maxFileSize

ignoreBackupExtensions

boolean ignoreBackupExtensions

textAreaFont

java.awt.Font textAreaFont

textAreaUnderline

boolean textAreaUnderline

textAreaForeground

java.awt.Color textAreaForeground

textAreaOrientation

java.awt.ComponentOrientation textAreaOrientation

listenerList

javax.swing.event.EventListenerList listenerList

codeFoldingEnabledStates

java.util.Map codeFoldingEnabledStates

bookmarkIcon

javax.swing.Icon bookmarkIcon

bookmarksEnabled

boolean bookmarksEnabled

lineNumberFont

java.awt.Font lineNumberFont

lineNumberColor

java.awt.Color lineNumberColor

gutterBorderColor

java.awt.Color gutterBorderColor

spellingSupport

SpellingSupport spellingSupport

toggleTextModeAction

ToggleTextModeAction toggleTextModeAction

capsLockAction

CapsLockAction capsLockAction

Class org.fife.rtext.AbstractParserNoticeWindow extends DockableWindow implements Serializable

Serialized Fields

rtext

RText rtext

table

javax.swing.JTable table

Class org.fife.rtext.AbstractParserNoticeWindow.ParserNoticeTableModel extends javax.swing.table.DefaultTableModel implements Serializable

Class org.fife.rtext.AssistanceIconPanel extends DecorativeIconPanel implements Serializable

Class org.fife.rtext.BottomLineBorder extends javax.swing.border.AbstractBorder implements Serializable

Serialized Fields

horizInsets

int horizInsets

Class org.fife.rtext.CurrentTextAreaEvent extends java.util.EventObject implements Serializable

Serialized Fields

type

int type

oldValue

java.lang.Object oldValue

newValue

java.lang.Object newValue

Class org.fife.rtext.DecorativeIconPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

iconLabel

javax.swing.JLabel iconLabel

showIcon

boolean showIcon

tip

java.lang.String tip

Class org.fife.rtext.ExceptionDialog extends ExceptionDialog implements Serializable

Class org.fife.rtext.GetKeyStrokeDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

stroke

javax.swing.KeyStroke stroke

textField

KeyStrokeField textField

canceled

boolean canceled

Class org.fife.rtext.GoToDialog extends EscapableDialog implements Serializable

Serialized Fields

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

lineNumberField

javax.swing.JTextField lineNumberField

maxLineNumberAllowed

int maxLineNumberAllowed

lineNumber

int lineNumber

owner

RText owner

Class org.fife.rtext.KeyStrokeCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Class org.fife.rtext.KeyStrokeField extends javax.swing.JTextField implements Serializable

Serialized Fields

stroke

javax.swing.KeyStroke stroke

listener

java.awt.event.FocusAdapter listener

Class org.fife.rtext.RemoteFileChooser extends EscapableDialog implements Serializable

Serialized Fields

owner

RText owner

formPanel

javax.swing.JPanel formPanel

protoLabel

javax.swing.JLabel protoLabel

protocolCombo

javax.swing.JComboBox protocolCombo

hostLabel

javax.swing.JLabel hostLabel

hostCombo

javax.swing.JComboBox hostCombo

fileNameLabel

javax.swing.JLabel fileNameLabel

fileCombo

javax.swing.JComboBox fileCombo

userLabel

javax.swing.JLabel userLabel

userCombo

javax.swing.JComboBox userCombo

passLabel

javax.swing.JLabel passLabel

passField

javax.swing.JPasswordField passField

encodingLabel

javax.swing.JLabel encodingLabel

encodingCombo

javax.swing.JComboBox encodingCombo

portLabel

javax.swing.JLabel portLabel

portCombo

javax.swing.JComboBox portCombo

okButton

javax.swing.JButton okButton

advancedButton

javax.swing.JToggleButton advancedButton

savedUser

java.lang.String savedUser

savedPass

char[] savedPass

openTitle

java.lang.String openTitle

saveTitle

java.lang.String saveTitle

mode

int mode

Class org.fife.rtext.RText extends AbstractPluggableGUIApplication implements Serializable

Serialized Fields

iconGroupMap

java.util.Map iconGroupMap

menuBar

RTextMenuBar menuBar

optionsDialog

OptionsDialog optionsDialog

mainView

AbstractMainView mainView

mainViewStyle

int mainViewStyle

chooser

RTextFileChooser chooser

rfc

RemoteFileChooser rfc

helpDialog

HelpDialog helpDialog

spellingWindow

SpellingErrorWindow spellingWindow

aboutDialogCreated

boolean aboutDialogCreated

colorScheme

SyntaxScheme colorScheme

iconGroup

IconGroup iconGroup

workingDirectory

java.lang.String workingDirectory

newFileName

java.lang.String newFileName

searchBar

SearchToolBar searchBar

showHostName

boolean showHostName

windowListenersInited

boolean windowListenersInited
Whether searchWindowOpacityListener has been attempted to be created yet. This is kept in a variable instead of checking for null because the creation is done via reflection (since we're 1.4-compatible), so it is a fairly common case that creation is attempted but fails.


searchWindowOpacityListener

ChildWindowListener searchWindowOpacityListener
Listens for focus events of certain child windows (those that can be made translucent on focus lost).


searchWindowOpacityEnabled

boolean searchWindowOpacityEnabled
Whether the Find and Replace dialogs can have their opacity changed.


searchWindowOpacity

float searchWindowOpacity
The opacity with which to render unfocused child windows that support opacity changes.


searchWindowOpacityRule

int searchWindowOpacityRule
The rule used for making certain unfocused child windows translucent.


hostName

java.lang.String hostName
The (lazily created) name of localhost. Do not access this field directly; instead, use RText.getHostName().


lastPluginCount

int lastPluginCount
Used as a "hack" to re-load the Options dialog if the user opens it too early, before all plugins have added their options to it.

Class org.fife.rtext.RTextEditorPane extends TextEditorPane implements Serializable

Serialized Fields

rtext

RText rtext

Class org.fife.rtext.RTextMenuBar extends MenuBar implements Serializable

Serialized Fields

newItem

javax.swing.JMenuItem newItem

openItem

javax.swing.JMenuItem openItem

openInNewWindowItem

javax.swing.JMenuItem openInNewWindowItem

openRemoteItem

javax.swing.JMenuItem openRemoteItem

saveItem

javax.swing.JMenuItem saveItem

saveAsItem

javax.swing.JMenuItem saveAsItem

saveAsRemoteItem

javax.swing.JMenuItem saveAsRemoteItem

saveAsWebPageItem

javax.swing.JMenuItem saveAsWebPageItem

saveAllItem

javax.swing.JMenuItem saveAllItem

closeItem

javax.swing.JMenuItem closeItem

closeAllItem

javax.swing.JMenuItem closeAllItem

printItem

javax.swing.JMenuItem printItem

printPreviewItem

javax.swing.JMenuItem printPreviewItem

exitItem

javax.swing.JMenuItem exitItem

undoItem

javax.swing.JMenuItem undoItem

redoItem

javax.swing.JMenuItem redoItem

cutItem

javax.swing.JMenuItem cutItem

copyItem

javax.swing.JMenuItem copyItem

copyAsRtfItem

javax.swing.JMenuItem copyAsRtfItem

pasteItem

javax.swing.JMenuItem pasteItem

deleteItem

javax.swing.JMenuItem deleteItem

findItem

javax.swing.JMenuItem findItem

findNextItem

javax.swing.JMenuItem findNextItem

replaceItem

javax.swing.JMenuItem replaceItem

replaceNextItem

javax.swing.JMenuItem replaceNextItem

findInFilesItem

javax.swing.JMenuItem findInFilesItem

replaceInFilesItem

javax.swing.JMenuItem replaceInFilesItem

goToItem

javax.swing.JMenuItem goToItem

selectAllItem

javax.swing.JMenuItem selectAllItem

timeDateItem

javax.swing.JMenuItem timeDateItem

optionsItem

javax.swing.JMenuItem optionsItem

toolbarItem

javax.swing.JCheckBoxMenuItem toolbarItem

searchToolbarMenuItem

javax.swing.JCheckBoxMenuItem searchToolbarMenuItem

statusBarItem

javax.swing.JCheckBoxMenuItem statusBarItem

lineNumbersItem

javax.swing.JCheckBoxMenuItem lineNumbersItem

nextDocItem

javax.swing.JMenuItem nextDocItem

prevDocItem

javax.swing.JMenuItem prevDocItem

increaseFontSizesItem

javax.swing.JMenuItem increaseFontSizesItem

decreaseFontSizesItem

javax.swing.JMenuItem decreaseFontSizesItem

helpItem

javax.swing.JMenuItem helpItem

homePageItem

javax.swing.JMenuItem homePageItem

updatesItem

javax.swing.JMenuItem updatesItem

aboutItem

javax.swing.JMenuItem aboutItem

filePropItem

javax.swing.JMenuItem filePropItem

fileMenu

javax.swing.JMenu fileMenu

viewMenu

javax.swing.JMenu viewMenu

windowMenu

javax.swing.JMenu windowMenu

recentFilesMenu

RecentFilesMenu recentFilesMenu

savedMacroMenu

javax.swing.JMenu savedMacroMenu

rtext

RText rtext

MAX_FILE_PATH_LENGTH

int MAX_FILE_PATH_LENGTH
Approximate maximum length, in pixels, of a File History entry. Note that this is only GUIDELINE, and some filenames can (and will) exceed this limit.

See Also:
Constant Field Values

Class org.fife.rtext.SearchToolBar extends javax.swing.JToolBar implements Serializable

Serialized Fields

owner

RText owner

findField

javax.swing.JTextField findField

findButton

javax.swing.JButton findButton

findPrevButton

javax.swing.JButton findPrevButton

matchCaseCheckBox

javax.swing.JCheckBox matchCaseCheckBox

infoLabel

javax.swing.JLabel infoLabel

textNotFound

java.lang.String textNotFound

Class org.fife.rtext.StatusBar extends StatusBar implements Serializable

Serialized Fields

rowAndColumnIndicator

javax.swing.JLabel rowAndColumnIndicator

overwriteModeIndicator

javax.swing.JLabel overwriteModeIndicator

capsLockIndicator

javax.swing.JLabel capsLockIndicator

readOnlyIndicator

javax.swing.JLabel readOnlyIndicator

recIndicator

javax.swing.JLabel recIndicator

row

int row

column

int column

rowColumnIndicatorVisible

boolean rowColumnIndicatorVisible

overwritePanel

StatusBarPanel overwritePanel

capsLockPanel

StatusBarPanel capsLockPanel

readOnlyPanel

StatusBarPanel readOnlyPanel

recPanel

StatusBarPanel recPanel

fileSaveSuccessfulText

java.lang.String fileSaveSuccessfulText

openedFileText

java.lang.String openedFileText

rowColumnText1

java.lang.String rowColumnText1

rowColumnText2

java.lang.String rowColumnText2

rowColumnText3

java.lang.String rowColumnText3

rcBuf

java.lang.StringBuffer rcBuf


Package org.fife.rtext.actions

Class org.fife.rtext.actions.CapsLockAction extends StandardAction implements Serializable

Class org.fife.rtext.actions.CheckForUpdatesAction extends StandardAction implements Serializable

Class org.fife.rtext.actions.NextDocumentAction extends StandardAction implements Serializable

Serialized Fields

forward

boolean forward

Class org.fife.rtext.actions.ToggleTextModeAction extends RecordableTextAction implements Serializable

Serialized Fields

rtext

RText rtext


Package org.fife.rtext.optionsdialog

Class org.fife.rtext.optionsdialog.OptionsDialog extends OptionsDialog implements Serializable


Package org.fife.rtext.plugins.console

Class org.fife.rtext.plugins.console.StopAction extends StandardAction implements Serializable

Serialized Fields

plugin

Plugin plugin
The parent plugin.


Package org.fife.rtext.plugins.heapindicator

Class org.fife.rtext.plugins.heapindicator.HeapIndicatorPlugin extends StatusBarPlugin implements Serializable

Serialized Fields

app

AbstractPluggableGUIApplication app

heapIcon

HeapIcon heapIcon

timer

javax.swing.Timer timer

timerEvent

org.fife.rtext.plugins.heapindicator.HeapIndicatorPlugin.TimerEvent timerEvent

usedMem

long usedMem

totalMem

long totalMem

msg

java.util.ResourceBundle msg

optionPanel

HeapIndicatorOptionPanel optionPanel

pluginIcon

javax.swing.Icon pluginIcon

useSystemColors

boolean useSystemColors

iconForeground

java.awt.Color iconForeground

iconBorderColor

java.awt.Color iconBorderColor


Package org.fife.rtext.plugins.langsupport

Class org.fife.rtext.plugins.langsupport.CPlusPlusOptionsPanel extends org.fife.rtext.plugins.langsupport.FoldingOnlyOptionsPanel implements Serializable

Class org.fife.rtext.plugins.langsupport.CSharpOptionsPanel extends org.fife.rtext.plugins.langsupport.FoldingOnlyOptionsPanel implements Serializable

Class org.fife.rtext.plugins.langsupport.CssOptionsPanel extends org.fife.rtext.plugins.langsupport.FoldingOnlyOptionsPanel implements Serializable

Class org.fife.rtext.plugins.langsupport.GoToMemberAction extends StandardAction implements Serializable

Class org.fife.rtext.plugins.langsupport.GroovyOptionsPanel extends org.fife.rtext.plugins.langsupport.FoldingOnlyOptionsPanel implements Serializable

Class org.fife.rtext.plugins.langsupport.LatexOptionsPanel extends org.fife.rtext.plugins.langsupport.FoldingOnlyOptionsPanel implements Serializable

Class org.fife.rtext.plugins.langsupport.MxmlOptionsPanel extends org.fife.rtext.plugins.langsupport.FoldingOnlyOptionsPanel implements Serializable


Package org.fife.rtext.plugins.macros

Class org.fife.rtext.plugins.macros.NewMacroDialog extends EscapableDialog implements Serializable

Serialized Fields

rtext

RText rtext

plugin

MacroPlugin plugin

l

org.fife.rtext.plugins.macros.NewMacroDialog.Listener l

nameDIP

DecorativeIconPanel nameDIP

nameField

javax.swing.JTextField nameField

descField

javax.swing.JTextField descField

shortcutField

KeyStrokeField shortcutField

typeCombo

javax.swing.JComboBox typeCombo

engineNotesLabel

SelectableLabel engineNotesLabel

okButton

RButton okButton

editButton

RButton editButton

cancelButton

RButton cancelButton

macro

Macro macro

isNew

boolean isNew

Class org.fife.rtext.plugins.macros.RunMacroAction extends StandardAction implements Serializable

Serialized Fields

plugin

MacroPlugin plugin
The macro plugin.


macro

Macro macro
The macro to run.


bindings

java.lang.Object bindings
The javax.script.Bindings instance.


Package org.fife.rtext.plugins.sourcebrowser

Class org.fife.rtext.plugins.sourcebrowser.SourceTreeNode extends javax.swing.tree.DefaultMutableTreeNode implements Serializable

Serialized Fields

sortable

boolean sortable

sorted

boolean sorted

prefix

java.lang.String prefix

visibleChildren

java.util.Vector visibleChildren

sortPriority

int sortPriority


Package org.fife.rtext.plugins.tasks

Class org.fife.rtext.plugins.tasks.ViewTasksAction extends StandardAction implements Serializable

Serialized Fields

plugin

TasksPlugin plugin
The tasks plugin.


Package org.fife.rtext.plugins.tools

Class org.fife.rtext.plugins.tools.ContentAssistField extends javax.swing.JTextField implements Serializable

Serialized Fields

enabled

boolean enabled
Whether content assist is enabled.


ac

AutoCompletion ac
The auto-completion instance for this text field.


provider

CompletionProvider provider
Provides the completions for this text field.

Class org.fife.rtext.plugins.tools.NewToolDialog extends EscapableDialog implements Serializable

Serialized Fields

tabPane

javax.swing.JTabbedPane tabPane

chooser

RTextFileChooser chooser

dirChooser

RDirectoryChooser dirChooser

nameField

javax.swing.JTextField nameField

descField

javax.swing.JTextField descField

programField

FSATextField programField

dirField

FSATextField dirField

shortcutField

KeyStrokeField shortcutField

argModel

javax.swing.table.DefaultTableModel argModel

envModel

javax.swing.table.DefaultTableModel envModel

appendRB

javax.swing.JRadioButton appendRB

replaceRB

javax.swing.JRadioButton replaceRB

tool

Tool tool

origName

java.lang.String origName
The original name of the tool being edited, or null if the user is creating a new tool.

Class org.fife.rtext.plugins.tools.StopAction extends StandardAction implements Serializable

Serialized Fields

plugin

ToolPlugin plugin
The parent plugin.

Class org.fife.rtext.plugins.tools.ToolDockableWindow extends DockableWindow implements Serializable

Serialized Fields

tool

Tool tool
The tool currently running. This should only be manipulated on the EDT.


startTime

long startTime
The time the last tool was started, in milliseconds.


textArea

OutputTextPane textArea
Where the output of the tool goes.


stopAction

StopAction stopAction
Used by toolbar button to stop the currently running tool.


Package org.fife.ui.rsyntaxtextarea

Class org.fife.ui.rsyntaxtextarea.ActiveLineRangeEvent extends java.util.EventObject implements Serializable

Serialized Fields

min

int min

max

int max

Class org.fife.ui.rsyntaxtextarea.ErrorStrip extends javax.swing.JComponent implements Serializable

Serialized Fields

textArea

RSyntaxTextArea textArea

listener

ErrorStrip.Listener listener

showMarkedOccurrences

boolean showMarkedOccurrences

brighterColors

java.util.Map brighterColors

levelThreshold

int levelThreshold

followCaret

boolean followCaret

caretMarkerColor

java.awt.Color caretMarkerColor

caretLineY

int caretLineY

lastLineY

int lastLineY

Class org.fife.ui.rsyntaxtextarea.FoldingAwareIconRowHeader extends IconRowHeader implements Serializable

Class org.fife.ui.rsyntaxtextarea.RSyntaxDocument extends javax.swing.text.PlainDocument implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws java.lang.ClassNotFoundException,
                        java.io.IOException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws java.io.IOException
Serialized Fields

syntaxStyle

java.lang.String syntaxStyle

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextArea extends RTextArea implements Serializable

Serialized Fields

foldingMenu

javax.swing.JMenu foldingMenu

syntaxStyleKey

java.lang.String syntaxStyleKey

syntaxScheme

SyntaxScheme syntaxScheme

match

java.awt.Rectangle match

matchedBracketBGColor

java.awt.Color matchedBracketBGColor

matchedBracketBorderColor

java.awt.Color matchedBracketBorderColor

lastBracketMatchPos

int lastBracketMatchPos

bracketMatchingEnabled

boolean bracketMatchingEnabled

animateBracketMatching

boolean animateBracketMatching

bracketRepaintTimer

RSyntaxTextArea.BracketMatchingTimer bracketRepaintTimer

autoIndentEnabled

boolean autoIndentEnabled

closeCurlyBraces

boolean closeCurlyBraces

closeMarkupTags

boolean closeMarkupTags

clearWhitespaceLines

boolean clearWhitespaceLines

whitespaceVisible

boolean whitespaceVisible

eolMarkersVisible

boolean eolMarkersVisible

paintTabLines

boolean paintTabLines

tabLineColor

java.awt.Color tabLineColor

hyperlinksEnabled

boolean hyperlinksEnabled

hyperlinkFG

java.awt.Color hyperlinkFG

linkScanningMask

int linkScanningMask

rtfGenerator

RtfGenerator rtfGenerator

markOccurrencesSupport

MarkOccurrencesSupport markOccurrencesSupport

markOccurrencesColor

java.awt.Color markOccurrencesColor

paintMarkOccurrencesBorder

boolean paintMarkOccurrencesBorder

defaultFontMetrics

java.awt.FontMetrics defaultFontMetrics

parserManager

ParserManager parserManager

isScanningForLinks

boolean isScanningForLinks

hoveredOverLinkOffset

int hoveredOverLinkOffset

foldManager

FoldManager foldManager

useFocusableTips

boolean useFocusableTips

focusableTip

FocusableTip focusableTip

aaHints

java.util.Map aaHints

lineHeight

int lineHeight

maxAscent

int maxAscent

fractionalFontMetricsEnabled

boolean fractionalFontMetricsEnabled

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaDefaultInputMap extends RTADefaultInputMap implements Serializable

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit extends RTextAreaEditorKit implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.BeginWordAction extends RTextAreaEditorKit.BeginWordAction implements Serializable

Serialized Fields

seg

javax.swing.text.Segment seg

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.ChangeFoldStateAction extends RSyntaxTextAreaEditorKit.FoldRelatedAction implements Serializable

Serialized Fields

collapse

boolean collapse

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.CloseCurlyBraceAction extends RecordableTextAction implements Serializable

serialVersionUID: 1l

Serialized Fields

seg

javax.swing.text.Segment seg

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.CloseMarkupTagAction extends RecordableTextAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.CollapseAllCommentFoldsAction extends RSyntaxTextAreaEditorKit.FoldRelatedAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.CollapseAllFoldsAction extends RSyntaxTextAreaEditorKit.FoldRelatedAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.CopyAsRtfAction extends RecordableTextAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.DecreaseFontSizeAction extends RTextAreaEditorKit.DecreaseFontSizeAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.DecreaseIndentAction extends RecordableTextAction implements Serializable

serialVersionUID: 1l

Serialized Fields

s

javax.swing.text.Segment s

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.DeletePrevWordAction extends RTextAreaEditorKit.DeletePrevWordAction implements Serializable

Serialized Fields

seg

javax.swing.text.Segment seg

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.EndAction extends RTextAreaEditorKit.EndAction implements Serializable

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.EndWordAction extends RTextAreaEditorKit.EndWordAction implements Serializable

Serialized Fields

seg

javax.swing.text.Segment seg

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.ExpandAllFoldsAction extends RSyntaxTextAreaEditorKit.FoldRelatedAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.GoToMatchingBracketAction extends RecordableTextAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.IncreaseFontSizeAction extends RTextAreaEditorKit.IncreaseFontSizeAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.InsertBreakAction extends RTextAreaEditorKit.InsertBreakAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.InsertTabAction extends RecordableTextAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.NextWordAction extends RTextAreaEditorKit.NextWordAction implements Serializable

Serialized Fields

seg

javax.swing.text.Segment seg

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.PossiblyInsertTemplateAction extends RecordableTextAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.PreviousWordAction extends RTextAreaEditorKit.PreviousWordAction implements Serializable

Serialized Fields

seg

javax.swing.text.Segment seg

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.SelectWordAction extends RTextAreaEditorKit.SelectWordAction implements Serializable

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.ToggleCommentAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit.ToggleCurrentFoldAction extends RSyntaxTextAreaEditorKit.FoldRelatedAction implements Serializable

serialVersionUID: 1l

Class org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaOptionPanel extends OptionsDialogPanel implements Serializable

Serialized Fields

mainFontSelector

FontSelector mainFontSelector

mainBackgroundField

javax.swing.JTextField mainBackgroundField

mainBackgroundButton

RButton mainBackgroundButton

backgroundDialog

BackgroundDialog backgroundDialog

background

java.lang.Object background

bgImageFileName

java.lang.String bgImageFileName

syntaxPanel

javax.swing.JPanel syntaxPanel

syntaxList

javax.swing.JList syntaxList

syntaxListModel

javax.swing.DefaultListModel syntaxListModel

fontSelector

FontSelector fontSelector

foregroundButton

RColorSwatchesButton foregroundButton

fgCheckBox

javax.swing.JCheckBox fgCheckBox

bgCheckBox

javax.swing.JCheckBox bgCheckBox

backgroundButton

RColorSwatchesButton backgroundButton

sampleCombo

javax.swing.JComboBox sampleCombo

sampleArea

RSyntaxTextArea sampleArea

colorScheme

SyntaxScheme colorScheme

isSettingStyle

boolean isSettingStyle

Class org.fife.ui.rsyntaxtextarea.SpellingOptionPanel extends OptionsDialogPanel implements Serializable

Serialized Fields

enabledCB

javax.swing.JCheckBox enabledCB

dictLabel

javax.swing.JLabel dictLabel

dictCombo

SpecialValueComboBox dictCombo

userDictLabel

javax.swing.JLabel userDictLabel

userDictField

FSATextField userDictField

userDictDescField

SelectableLabel userDictDescField

userDictBrowse

RButton userDictBrowse

chooser

RTextFileChooser chooser

colorLabel

javax.swing.JLabel colorLabel

spellingColorButton

RColorSwatchesButton spellingColorButton

errorsPerFileLabel

javax.swing.JLabel errorsPerFileLabel

maxErrorsField

javax.swing.JTextField maxErrorsField

viewSpellingWindowCB

javax.swing.JCheckBox viewSpellingWindowCB

listener

SpellingOptionPanel.Listener listener

msg

java.util.ResourceBundle msg

Class org.fife.ui.rsyntaxtextarea.TemplateOptionPanel extends OptionsDialogPanel implements Serializable

Serialized Fields

templateTable

ModifiableTable templateTable

tableModel

javax.swing.table.DefaultTableModel tableModel

msg

java.util.ResourceBundle msg

Class org.fife.ui.rsyntaxtextarea.TextEditorPane extends RSyntaxTextArea implements Serializable

serialVersionUID: 1l

Serialized Fields

loc

FileLocation loc

charSet

java.lang.String charSet

readOnly

boolean readOnly

dirty

boolean dirty

lastSaveOrLoadTime

long lastSaveOrLoadTime

Class org.fife.ui.rsyntaxtextarea.TextFilePropertiesDialog extends EscapableDialog implements Serializable

serialVersionUID: 1l

Serialized Fields

wordsCountLabel

javax.swing.JLabel wordsCountLabel

terminatorCombo

SpecialValueComboBox terminatorCombo

encodingCombo

javax.swing.JComboBox encodingCombo

okButton

RButton okButton

textArea

TextEditorPane textArea


Package org.fife.ui.rtextarea

Class org.fife.ui.rtextarea.CaretAndSelectionOptionPanel extends OptionsDialogPanel implements Serializable

Serialized Fields

insCaretCombo

javax.swing.JComboBox insCaretCombo

overCaretCombo

javax.swing.JComboBox overCaretCombo

blinkRateSpinner

javax.swing.JSpinner blinkRateSpinner

caretColorButton

RColorSwatchesButton caretColorButton

selColorButton

RColorSwatchesButton selColorButton

markAllColorButton

RColorSwatchesButton markAllColorButton

roundedSelCheckBox

javax.swing.JCheckBox roundedSelCheckBox

enableMOCheckBox

javax.swing.JCheckBox enableMOCheckBox

moColorLabel

javax.swing.JLabel moColorLabel

moColorButton

RColorSwatchesButton moColorButton

Class org.fife.ui.rtextarea.ChangeableHighlightPainter extends javax.swing.text.LayeredHighlighter.LayerPainter implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws java.lang.ClassNotFoundException,
                        java.io.IOException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws java.io.IOException
Serialized Fields

paint

java.awt.Paint paint

roundedEdges

boolean roundedEdges

alpha

float alpha

Class org.fife.ui.rtextarea.ConfigurableCaret extends javax.swing.text.DefaultCaret implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws java.lang.ClassNotFoundException,
                        java.io.IOException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws java.io.IOException
Serialized Fields

style

int style

selectionPainter

ChangeableHighlightPainter selectionPainter

Class org.fife.ui.rtextarea.FoldIndicator extends AbstractGutterComponent implements Serializable

Serialized Fields

textAreaInsets

java.awt.Insets textAreaInsets

visibleRect

java.awt.Rectangle visibleRect

foldWithOutlineShowing

Fold foldWithOutlineShowing

foldIconBackground

java.awt.Color foldIconBackground

collapsedFoldIcon

javax.swing.Icon collapsedFoldIcon

expandedFoldIcon

javax.swing.Icon expandedFoldIcon

showFoldRegionTips

boolean showFoldRegionTips

listener

FoldIndicator.Listener listener

Class org.fife.ui.rtextarea.Gutter extends javax.swing.JPanel implements Serializable

Serialized Fields

textArea

RTextArea textArea

lineNumberList

LineNumberList lineNumberList

iconArea

IconRowHeader iconArea

foldIndicator

FoldIndicator foldIndicator

listener

Gutter.TextAreaListener listener

Class org.fife.ui.rtextarea.GutterOptionPanel extends OptionsDialogPanel implements Serializable

Serialized Fields

lnEnabledCB

javax.swing.JCheckBox lnEnabledCB

fontSelector

FontSelector fontSelector

lnColorButton

RColorSwatchesButton lnColorButton

enableBookmarkingCB

javax.swing.JCheckBox enableBookmarkingCB

borderColorButton

RColorSwatchesButton borderColorButton

Class org.fife.ui.rtextarea.IconRowHeader extends AbstractGutterComponent implements Serializable

Serialized Fields

trackingIcons

java.util.List trackingIcons

width

int width

bookmarkingEnabled

boolean bookmarkingEnabled

bookmarkIcon

javax.swing.Icon bookmarkIcon

visibleRect

java.awt.Rectangle visibleRect

textAreaInsets

java.awt.Insets textAreaInsets

activeLineRangeStart

int activeLineRangeStart

activeLineRangeEnd

int activeLineRangeEnd

activeLineRangeColor

java.awt.Color activeLineRangeColor

Class org.fife.ui.rtextarea.LineNumberList extends AbstractGutterComponent implements Serializable

Serialized Fields

currentLine

int currentLine

lastY

int lastY

cellHeight

int cellHeight

cellWidth

int cellWidth

ascent

int ascent

aaHints

java.util.Map aaHints

mouseDragStartOffset

int mouseDragStartOffset

l

LineNumberList.Listener l

textAreaInsets

java.awt.Insets textAreaInsets

visibleRect

java.awt.Rectangle visibleRect

lineNumberingStartIndex

int lineNumberingStartIndex

Class org.fife.ui.rtextarea.RecordableTextAction extends javax.swing.text.TextAction implements Serializable

Serialized Fields

isRecordable

boolean isRecordable

Class org.fife.ui.rtextarea.RTADefaultInputMap extends javax.swing.InputMap implements Serializable

Class org.fife.ui.rtextarea.RTATextTransferHandler extends javax.swing.TransferHandler implements Serializable

Serialized Fields

exportComp

javax.swing.text.JTextComponent exportComp

shouldRemove

boolean shouldRemove

p0

int p0

p1

int p1

withinSameComponent

boolean withinSameComponent

Class org.fife.ui.rtextarea.RTextArea extends RTextAreaBase implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws java.lang.ClassNotFoundException,
                        java.io.IOException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws java.io.IOException
Serialized Fields

textMode

int textMode

popupMenu

javax.swing.JPopupMenu popupMenu

popupMenuCreated

boolean popupMenuCreated

toolTipSupplier

ToolTipSupplier toolTipSupplier

markAllHighlights

java.util.ArrayList markAllHighlights

markedWord

java.lang.String markedWord

markAllHighlightPainter

ChangeableHighlightPainter markAllHighlightPainter

carets

int[] carets

repTabsSB

java.lang.StringBuffer repTabsSB

Class org.fife.ui.rtextarea.RTextArea.RTextAreaMutableCaretEvent extends RTextAreaBase.RTAMouseListener implements Serializable

Class org.fife.ui.rtextarea.RTextAreaBase.RTAMouseListener extends javax.swing.event.CaretEvent implements Serializable

Serialized Fields

dot

int dot

mark

int mark

Class org.fife.ui.rtextarea.RTextAreaEditorKit extends javax.swing.text.DefaultEditorKit implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.BeepAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.BeginAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.BeginLineAction extends RecordableTextAction implements Serializable

Serialized Fields

currentLine

javax.swing.text.Segment currentLine

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.BeginRecordingMacroAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.BeginWordAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.CopyAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.CutAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DecreaseFontSizeAction extends RecordableTextAction implements Serializable

Serialized Fields

decreaseAmount

float decreaseAmount

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DefaultKeyTypedAction extends RecordableTextAction implements Serializable

Serialized Fields

delegate

javax.swing.Action delegate

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DeleteLineAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DeleteNextCharAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DeletePrevCharAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DeletePrevWordAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DeleteRestOfLineAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.DumbCompleteWordAction extends RecordableTextAction implements Serializable

Serialized Fields

lastWordStart

int lastWordStart

lastDot

int lastDot

searchOffs

int searchOffs

lastPrefix

java.lang.String lastPrefix

Class org.fife.ui.rtextarea.RTextAreaEditorKit.EndAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.EndLineAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.EndRecordingMacroAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.EndWordAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.IncreaseFontSizeAction extends RecordableTextAction implements Serializable

Serialized Fields

increaseAmount

float increaseAmount

Class org.fife.ui.rtextarea.RTextAreaEditorKit.InsertBreakAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.InsertContentAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.InsertTabAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.InvertSelectionCaseAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.JoinLinesAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.LineMoveAction extends RecordableTextAction implements Serializable

Serialized Fields

moveAmt

int moveAmt

Class org.fife.ui.rtextarea.RTextAreaEditorKit.LowerSelectionCaseAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.NextBookmarkAction extends RecordableTextAction implements Serializable

Serialized Fields

forward

boolean forward

Class org.fife.ui.rtextarea.RTextAreaEditorKit.NextOccurrenceAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.NextVisualPositionAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

direction

int direction

Class org.fife.ui.rtextarea.RTextAreaEditorKit.NextWordAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.PasteAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.PlaybackLastMacroAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.PreviousOccurrenceAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.PreviousWordAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

Class org.fife.ui.rtextarea.RTextAreaEditorKit.RedoAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.ScrollAction extends RecordableTextAction implements Serializable

Serialized Fields

delta

int delta

Class org.fife.ui.rtextarea.RTextAreaEditorKit.SelectAllAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.SelectLineAction extends RecordableTextAction implements Serializable

Serialized Fields

start

javax.swing.Action start

end

javax.swing.Action end

Class org.fife.ui.rtextarea.RTextAreaEditorKit.SelectWordAction extends RecordableTextAction implements Serializable

Serialized Fields

start

javax.swing.Action start

end

javax.swing.Action end

Class org.fife.ui.rtextarea.RTextAreaEditorKit.SetReadOnlyAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.SetWritableAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.TimeDateAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.ToggleBookmarkAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.ToggleTextModeAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.UndoAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.UnselectAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.UpperSelectionCaseAction extends RecordableTextAction implements Serializable

Class org.fife.ui.rtextarea.RTextAreaEditorKit.VerticalPageAction extends RecordableTextAction implements Serializable

Serialized Fields

select

boolean select

direction

int direction

Class org.fife.ui.rtextarea.RTextAreaOptionPanel extends OptionsDialogPanel implements Serializable

Serialized Fields

tabSizeLabel

javax.swing.JLabel tabSizeLabel

tabSizeField

javax.swing.JTextField tabSizeField

tabSize

int tabSize

emulateTabsCheckBox

javax.swing.JCheckBox emulateTabsCheckBox

linkCB

javax.swing.JCheckBox linkCB

modKeyLabel

javax.swing.JLabel modKeyLabel

modKeyCombo

javax.swing.JComboBox modKeyCombo

linkColorLabel

javax.swing.JLabel linkColorLabel

linkColorButton

RColorSwatchesButton linkColorButton

wordWrapCheckBox

javax.swing.JCheckBox wordWrapCheckBox

highlightCurrentLineCheckBox

javax.swing.JCheckBox highlightCurrentLineCheckBox

hclColorButton

RColorSwatchesButton hclColorButton

marginLineCheckBox

javax.swing.JCheckBox marginLineCheckBox

marginLinePositionField

javax.swing.JTextField marginLinePositionField

marginLineColorLabel

javax.swing.JLabel marginLineColorLabel

marginLineColorButton

RColorSwatchesButton marginLineColorButton

marginLinePosition

int marginLinePosition

visibleWhitespaceCheckBox

javax.swing.JCheckBox visibleWhitespaceCheckBox

visibleEOLCheckBox

javax.swing.JCheckBox visibleEOLCheckBox

remWhitespaceLinesCheckBox

javax.swing.JCheckBox remWhitespaceLinesCheckBox

autoInsertClosingCurlyCheckBox

javax.swing.JCheckBox autoInsertClosingCurlyCheckBox

aaCheckBox

javax.swing.JCheckBox aaCheckBox

fractionalMetricsCheckBox

javax.swing.JCheckBox fractionalMetricsCheckBox

bracketMatchingPanel

javax.swing.Box bracketMatchingPanel

bracketMatchCheckBox

javax.swing.JCheckBox bracketMatchCheckBox

bmBGColorLabel

javax.swing.JLabel bmBGColorLabel

bmBGColorButton

RColorSwatchesButton bmBGColorButton

bmBorderColorLabel

javax.swing.JLabel bmBorderColorLabel

bmBorderColorButton

RColorSwatchesButton bmBorderColorButton

showTabLinesCheckBox

javax.swing.JCheckBox showTabLinesCheckBox

tabLineColorButton

RColorSwatchesButton tabLineColorButton

restoreDefaultsButton

RButton restoreDefaultsButton

Class org.fife.ui.rtextarea.RTextScrollPane extends javax.swing.JScrollPane implements Serializable

Serialized Fields

textArea

RTextArea textArea

gutter

Gutter gutter

Class org.fife.ui.rtextarea.RUndoManager extends javax.swing.undo.UndoManager implements Serializable

Serialized Fields

compoundEdit

RUndoManager.RCompoundEdit compoundEdit

textArea

RTextArea textArea

lastOffset

int lastOffset

cantUndoText

java.lang.String cantUndoText

cantRedoText

java.lang.String cantRedoText

internalAtomicEditDepth

int internalAtomicEditDepth


Package org.fife.ui.search

Class org.fife.ui.search.AbstractFindReplaceDialog extends AbstractSearchDialog implements Serializable

Serialized Fields

upButton

javax.swing.JRadioButton upButton

downButton

javax.swing.JRadioButton downButton

dirPanel

javax.swing.JPanel dirPanel

dirPanelTitle

java.lang.String dirPanelTitle

findFieldLabel

javax.swing.JLabel findFieldLabel

findNextButton

javax.swing.JButton findNextButton

markAllCheckBox

javax.swing.JCheckBox markAllCheckBox
The "mark all" check box.

Class org.fife.ui.search.AbstractSearchDialog extends EscapableDialog implements Serializable

serialVersionUID: 1l

Serialized Fields

caseCheckBox

javax.swing.JCheckBox caseCheckBox

wholeWordCheckBox

javax.swing.JCheckBox wholeWordCheckBox

regExpCheckBox

javax.swing.JCheckBox regExpCheckBox

searchConditionsPanel

javax.swing.JPanel searchConditionsPanel

findTextCombo

javax.swing.JComboBox findTextCombo
The combo box where the user enters the text for which to search.


cancelButton

javax.swing.JButton cancelButton

Class org.fife.ui.search.FindDialog extends AbstractFindReplaceDialog implements Serializable

serialVersionUID: 1l

Serialized Fields

lastSearchString

java.lang.String lastSearchString

Class org.fife.ui.search.FindInFilesDialog extends AbstractSearchDialog implements Serializable

Serialized Fields

inFilesComboBox

javax.swing.JComboBox inFilesComboBox

inFolderTextField

FSATextField inFolderTextField

subfoldersCheckBox

javax.swing.JCheckBox subfoldersCheckBox

findButton

javax.swing.JButton findButton

browseButton

javax.swing.JButton browseButton

matchingLinesRadioButton

javax.swing.JRadioButton matchingLinesRadioButton

fileCountsOnlyRadioButton

javax.swing.JRadioButton fileCountsOnlyRadioButton

verboseCheckBox

javax.swing.JCheckBox verboseCheckBox

statusBar

StatusBar statusBar

resultsComponent

ResultsComponent resultsComponent

lastSearchString

java.lang.String lastSearchString

lastInFilesString

java.lang.String lastInFilesString

eventListenerList

javax.swing.event.EventListenerList eventListenerList

workerThread

FindInFilesThread workerThread

docListener

org.fife.ui.search.FindInFilesDialog.FindInFilesDocumentListener docListener

resources

java.util.ResourceBundle resources

defaultStatusText

java.lang.String defaultStatusText

searchingCompleteString

java.lang.String searchingCompleteString

Class org.fife.ui.search.FindInFilesEvent extends java.util.EventObject implements Serializable

serialVersionUID: 1l

Serialized Fields

fileName

java.lang.String fileName
The name of the file for the match they clicked.


line

int line
The line number of the match they clicked. Note that this value may be -1 signifying that no match was found (i.e., they clicked on a "verbose" informational line).

Class org.fife.ui.search.FindInFilesTable extends javax.swing.JTable implements Serializable

Serialized Fields

sorter

FileExplorerTableModel sorter

tableModel

javax.swing.table.DefaultTableModel tableModel

matchDatas

java.util.ArrayList matchDatas

defaultRenderer

org.fife.ui.search.FindInFilesTable.StandardCellRenderer defaultRenderer

verboseRenderer

org.fife.ui.search.FindInFilesTable.VerboseCellRenderer verboseRenderer

Class org.fife.ui.search.ReplaceDialog extends AbstractFindReplaceDialog implements Serializable

serialVersionUID: 1l

Serialized Fields

replaceButton

javax.swing.JButton replaceButton

replaceAllButton

javax.swing.JButton replaceAllButton

replaceFieldLabel

javax.swing.JLabel replaceFieldLabel

replaceWithCombo

MaxWidthComboBox replaceWithCombo

lastSearchString

java.lang.String lastSearchString

lastReplaceString

java.lang.String lastReplaceString

Class org.fife.ui.search.ReplaceInFilesDialog extends FindInFilesDialog implements Serializable

Serialized Fields

replaceCombo

MaxWidthComboBox replaceCombo

Class org.fife.ui.search.ReplaceInFilesTable extends FindInFilesTable implements Serializable