Package groovy.ui.text
Class StructuredSyntaxDocumentFilter
java.lang.Object
javax.swing.text.DocumentFilter
groovy.ui.text.StructuredSyntaxDocumentFilter
- Direct Known Subclasses:
 GroovyFilter
@Deprecated
public class StructuredSyntaxDocumentFilter
extends javax.swing.text.DocumentFilter
Deprecated.
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description classStructuredSyntaxDocumentFilter.LexerNodeDeprecated.protected classStructuredSyntaxDocumentFilter.MultiLineRunDeprecated.Nested classes/interfaces inherited from class javax.swing.text.DocumentFilter
javax.swing.text.DocumentFilter.FilterBypass - 
Field Summary
Fields Modifier and Type Field Description protected StructuredSyntaxDocumentFilter.LexerNodelexerDeprecated.The root of the lexical parsing tree.protected java.util.SortedSetmlTextRunSetDeprecated.The position tree of multi-line comments.protected javax.swing.text.DefaultStyledDocumentstyledDocumentDeprecated.static java.lang.StringTAB_REPLACEMENTDeprecated. - 
Constructor Summary
Constructors Constructor Description StructuredSyntaxDocumentFilter(javax.swing.text.DefaultStyledDocument document)Deprecated.Creates a new instance of StructuredSyntaxDocumentFilter - 
Method Summary
Modifier and Type Method Description StructuredSyntaxDocumentFilter.LexerNodecreateLexerNode()Deprecated.Create a new LexerNode for adding to root.StructuredSyntaxDocumentFilter.LexerNodegetRootNode()Deprecated.Get the root node for lexing the document.voidinsertString(javax.swing.text.DocumentFilter.FilterBypass fb, int offset, java.lang.String text, javax.swing.text.AttributeSet attrs)Deprecated.Insert a string into the document, and then parse it if the parser has been set.protected voidparseDocument(int offset, int length)Deprecated.Parse the Document to update the character styles given an initial start position.voidremove(javax.swing.text.DocumentFilter.FilterBypass fb, int offset, int length)Deprecated.Remove a string from the document, and then parse it if the parser has been set.voidreplace(javax.swing.text.DocumentFilter.FilterBypass fb, int offset, int length, java.lang.String text, javax.swing.text.AttributeSet attrs)Deprecated.Replace a string in the document, and then parse it if the parser has been set.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Field Details
- 
TAB_REPLACEMENT
public static final java.lang.String TAB_REPLACEMENTDeprecated.- See Also:
 - Constant Field Values
 
 - 
lexer
Deprecated.The root of the lexical parsing tree. - 
styledDocument
protected javax.swing.text.DefaultStyledDocument styledDocumentDeprecated. - 
mlTextRunSet
protected java.util.SortedSet mlTextRunSetDeprecated.The position tree of multi-line comments. 
 - 
 - 
Constructor Details
- 
StructuredSyntaxDocumentFilter
public StructuredSyntaxDocumentFilter(javax.swing.text.DefaultStyledDocument document)Deprecated.Creates a new instance of StructuredSyntaxDocumentFilter- Parameters:
 document- the styled document to parse
 
 - 
 - 
Method Details
- 
createLexerNode
Deprecated.Create a new LexerNode for adding to root.- Returns:
 - a new LexerNode
 
 - 
getRootNode
Deprecated.Get the root node for lexing the document. Children can be added such that matching patterns can be further parsed if required.- Returns:
 - the root lexing node.
 
 - 
insertString
public void insertString(javax.swing.text.DocumentFilter.FilterBypass fb, int offset, java.lang.String text, javax.swing.text.AttributeSet attrs) throws javax.swing.text.BadLocationExceptionDeprecated.Insert a string into the document, and then parse it if the parser has been set.- Overrides:
 insertStringin classjavax.swing.text.DocumentFilter- Parameters:
 fb-offset-text-attrs-- Throws:
 javax.swing.text.BadLocationException
 - 
parseDocument
protected void parseDocument(int offset, int length) throws javax.swing.text.BadLocationExceptionDeprecated.Parse the Document to update the character styles given an initial start position. Called by the filter after it has updated the text.- Parameters:
 offset-length-- Throws:
 javax.swing.text.BadLocationException
 - 
remove
public void remove(javax.swing.text.DocumentFilter.FilterBypass fb, int offset, int length) throws javax.swing.text.BadLocationExceptionDeprecated.Remove a string from the document, and then parse it if the parser has been set.- Overrides:
 removein classjavax.swing.text.DocumentFilter- Parameters:
 fb-offset-length-- Throws:
 javax.swing.text.BadLocationException
 - 
replace
public void replace(javax.swing.text.DocumentFilter.FilterBypass fb, int offset, int length, java.lang.String text, javax.swing.text.AttributeSet attrs) throws javax.swing.text.BadLocationExceptionDeprecated.Replace a string in the document, and then parse it if the parser has been set.- Overrides:
 replacein classjavax.swing.text.DocumentFilter- Parameters:
 fb-offset-length-text-attrs-- Throws:
 javax.swing.text.BadLocationException
 
 -