org.joone.edit.jedit
Class SyntaxDocument
- java.lang.Object
-
- javax.swing.text.AbstractDocument
-
- javax.swing.text.PlainDocument
-
- org.joone.edit.jedit.SyntaxDocument
-
- All Implemented Interfaces:
- java.io.Serializable, javax.swing.text.Document
public class SyntaxDocument extends javax.swing.text.PlainDocumentA document implementation that can be tokenized by the syntax highlighting system.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class javax.swing.text.AbstractDocument
javax.swing.text.AbstractDocument.AbstractElement, javax.swing.text.AbstractDocument.AttributeContext, javax.swing.text.AbstractDocument.BranchElement, javax.swing.text.AbstractDocument.Content, javax.swing.text.AbstractDocument.DefaultDocumentEvent, javax.swing.text.AbstractDocument.ElementEdit, javax.swing.text.AbstractDocument.LeafElement
-
-
Field Summary
-
Constructor Summary
Constructors Constructor and Description SyntaxDocument()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidaddUndoableEdit(javax.swing.undo.UndoableEdit edit)Adds an undoable edit to this document's undo list.voidbeginCompoundEdit()Starts a compound edit that can be undone in one operation.voidendCompoundEdit()Ends a compound edit that can be undone in one operation.TokenMarkergetTokenMarker()Returns the token marker that is to be used to split lines of this document up into tokens.voidsetTokenMarker(TokenMarker tm)Sets the token marker that is to be used to split lines of this document up into tokens.voidtokenizeLines()Reparses the document, by passing all lines to the token marker.voidtokenizeLines(int start, int len)Reparses the document, by passing the specified lines to the token marker.-
Methods inherited from class javax.swing.text.PlainDocument
getDefaultRootElement, getParagraphElement, insertString
-
Methods inherited from class javax.swing.text.AbstractDocument
addDocumentListener, addUndoableEditListener, createPosition, dump, getAsynchronousLoadPriority, getBidiRootElement, getDocumentFilter, getDocumentListeners, getDocumentProperties, getEndPosition, getLength, getListeners, getProperty, getRootElements, getStartPosition, getText, getText, getUndoableEditListeners, putProperty, readLock, readUnlock, remove, removeDocumentListener, removeUndoableEditListener, render, replace, setAsynchronousLoadPriority, setDocumentFilter, setDocumentProperties
-
-
-
-
Method Detail
-
getTokenMarker
public TokenMarker getTokenMarker()
Returns the token marker that is to be used to split lines of this document up into tokens. May return null if this document is not to be colorized.
-
setTokenMarker
public void setTokenMarker(TokenMarker tm)
Sets the token marker that is to be used to split lines of this document up into tokens. May throw an exception if this is not supported for this type of document.- Parameters:
tm- The new token marker
-
tokenizeLines
public void tokenizeLines()
Reparses the document, by passing all lines to the token marker. This should be called after the document is first loaded.
-
tokenizeLines
public void tokenizeLines(int start, int len)Reparses the document, by passing the specified lines to the token marker. This should be called after a large quantity of text is first inserted.- Parameters:
start- The first line to parselen- The number of lines, after the first one to parse
-
beginCompoundEdit
public void beginCompoundEdit()
Starts a compound edit that can be undone in one operation. Subclasses that implement undo should override this method; this class has no undo functionality so this method is empty.
-
endCompoundEdit
public void endCompoundEdit()
Ends a compound edit that can be undone in one operation. Subclasses that implement undo should override this method; this class has no undo functionality so this method is empty.
-
addUndoableEdit
public void addUndoableEdit(javax.swing.undo.UndoableEdit edit)
Adds an undoable edit to this document's undo list. The edit should be ignored if something is currently being undone.- Parameters:
edit- The undoable edit- Since:
- jEdit 2.2pre1
-
-
DataMelt 3.0 © DataMelt by jWork.ORG