| Home >> All >> com >> memoire >> [ jedit Javadoc ] |
com.memoire.jedit: Javadoc index of package com.memoire.jedit.
Package Samples:
com.memoire.jedit
Classes:
JEditTokenMarker: A token marker that splits lines of text into tokens. Each token carries a length field and an indentification tag that can be mapped to a color for painting that token. For performance reasons, the linked list of tokens is reused after each line is tokenized. Therefore, the return value of markTokens should only be used for immediate painting. Notably, it cannot be cached.
JEditToken: A linked list of tokens. Each token has three fields - a token identifier, which is a byte value that can be looked up in the array returned by JEditSyntaxDocument.getColors() to get a color value, a length value which is the length of the token in the text, and a pointer to the next token in the list.
JEditKeywordMap: A JEditKeywordMap is similar to a hashtable in that it maps keys to values. However, the `keys' are Swing segments. This allows lookups of text substrings without the overhead of creating a new string object. This class is used by JEditCTokenMarker to map keywords to ids.
JEditTextAreaDefaults: Encapsulates default settings for a text area. This can be passed to the constructor once the necessary fields have been filled out. The advantage of doing this over calling lots of set() methods after creating the text area is that this method is faster.
JEditDefaultInputHandler: The default input handler. It maps sequences of keystrokes into actions and inserts key typed events into the text area.
JEditInputHandler: An abstract class for a key event handler. Concrete implementations provide specific keystroke to action mappings.
JEditSyntaxStyle: A simple text style class. It can specify the color, italic flag, and bold flag of a run of text.
JEditTextAreaPainter: The text area repaint manager. It performs double buffering and paints lines of text.
JEditSyntaxDocument: A document implementation that can be tokenized by the syntax highlighting system.
JEditSyntaxUtilities: Class with several utility functions used by jEdit's syntax colorizing subsystem.
JEditTextUtilities: Class with several utility functions used by the text area component.
JEditPropsTokenMarker: Java properties/DOS INI token marker.
JEditTextArea: jEdit's text area component.
JEditTSQLTokenMarker: Transact-SQL token marker.
JEditShellScriptTokenMarker: Shell script token marker.
JEditPatchTokenMarker: Patch/diff token marker.
JEditBatchFileTokenMarker: Batch file token marker.
JEditJavaScriptTokenMarker: JavaScript token marker.
JEditMakefileTokenMarker: Makefile token marker.
JEditEiffelTokenMarker: Eiffel token Marker.
JEditPythonTokenMarker: Python token marker.
| Home | Contact Us | Privacy Policy | Terms of Service |