GrammarScope  4.0.0
Public Member Functions | Static Package Functions | Static Private Attributes | List of all members
grammarscope.editor.component.TregexPatternCell Class Reference
Inheritance diagram for grammarscope.editor.component.TregexPatternCell:
Inheritance graph
[legend]
Collaboration diagram for grammarscope.editor.component.TregexPatternCell:
Collaboration graph
[legend]

Public Member Functions

 TregexPatternCell ()
 
void setText (final String str)
 

Static Package Functions

 [static initializer]
 

Static Private Attributes

static final long serialVersionUID = 1L
 
static final Font font = new Font(Font.DIALOG, Font.PLAIN, 12)
 
static final Pattern operatorPattern = Pattern.compile("[\\$\<\>\\(\\)\\+\\-\\|\\!\\:\\,\\.\\`\\#\\=]+")
 
static final Pattern categoryPattern = Pattern.compile("[A-Z]*\\b")
 
static final Pattern prettyOperatorPattern = Pattern.compile("(\\bRoot\\b|\\band\\b|\\bor\\b)")
 
static final Pattern regExpPattern = Pattern.compile("/[^/]*/")
 
static final Pattern targetPattern = Pattern.compile("\\btarget\\b")
 
static final SimpleAttributeSet operatorStyle = new SimpleAttributeSet()
 
static final SimpleAttributeSet categoryStyle = new SimpleAttributeSet()
 
static final SimpleAttributeSet regExpStyle = new SimpleAttributeSet()
 
static final SimpleAttributeSet targetStyle = new SimpleAttributeSet()
 
static final Pattern[] patterns
 
static final SimpleAttributeSet[] styles
 

Detailed Description

Tregex Pattern coloring pane

Author
Bernard Bou

Constructor & Destructor Documentation

◆ TregexPatternCell()

grammarscope.editor.component.TregexPatternCell.TregexPatternCell ( )

Constructor

Member Function Documentation

◆ [static initializer]()

grammarscope.editor.component.TregexPatternCell.[static initializer]
staticpackage

◆ setText()

void grammarscope.editor.component.TregexPatternCell.setText ( final String  str)

Member Data Documentation

◆ categoryPattern

final Pattern grammarscope.editor.component.TregexPatternCell.categoryPattern = Pattern.compile("[A-Z]*\\b")
staticprivate

Grammatical category pattern

◆ categoryStyle

final SimpleAttributeSet grammarscope.editor.component.TregexPatternCell.categoryStyle = new SimpleAttributeSet()
staticprivate

Category style

◆ font

final Font grammarscope.editor.component.TregexPatternCell.font = new Font(Font.DIALOG, Font.PLAIN, 12)
staticprivate

Font

◆ operatorPattern

final Pattern grammarscope.editor.component.TregexPatternCell.operatorPattern = Pattern.compile("[\\$\<\>\\(\\)\\+\\-\\|\\!\\:\\,\\.\\`\\#\\=]+")
staticprivate

Operator pattern

◆ operatorStyle

final SimpleAttributeSet grammarscope.editor.component.TregexPatternCell.operatorStyle = new SimpleAttributeSet()
staticprivate

Operator style

◆ patterns

final Pattern [] grammarscope.editor.component.TregexPatternCell.patterns
staticprivate

◆ prettyOperatorPattern

final Pattern grammarscope.editor.component.TregexPatternCell.prettyOperatorPattern = Pattern.compile("(\\bRoot\\b|\\band\\b|\\bor\\b)")
staticprivate

Extra operators in pretty printing

◆ regExpPattern

final Pattern grammarscope.editor.component.TregexPatternCell.regExpPattern = Pattern.compile("/[^/]*/")
staticprivate

Regular expression

◆ regExpStyle

final SimpleAttributeSet grammarscope.editor.component.TregexPatternCell.regExpStyle = new SimpleAttributeSet()
staticprivate

Regular expression style

◆ serialVersionUID

final long grammarscope.editor.component.TregexPatternCell.serialVersionUID = 1L
staticprivate

◆ styles

final SimpleAttributeSet [] grammarscope.editor.component.TregexPatternCell.styles
staticprivate

◆ targetPattern

final Pattern grammarscope.editor.component.TregexPatternCell.targetPattern = Pattern.compile("\\btarget\\b")
staticprivate

'target'

◆ targetStyle

final SimpleAttributeSet grammarscope.editor.component.TregexPatternCell.targetStyle = new SimpleAttributeSet()
staticprivate

'target' style


The documentation for this class was generated from the following file:
grammarscope.editor.component.TregexPatternCell.categoryPattern
static final Pattern categoryPattern
Definition: TregexPatternCell.java:34
grammarscope.editor.component.TregexPatternCell.prettyOperatorPattern
static final Pattern prettyOperatorPattern
Definition: TregexPatternCell.java:39
grammarscope.editor.component.TregexPatternCell.operatorPattern
static final Pattern operatorPattern
Definition: TregexPatternCell.java:29
grammarscope.editor.component.TregexPatternCell.regExpPattern
static final Pattern regExpPattern
Definition: TregexPatternCell.java:44
grammarscope.editor.component.TregexPatternCell.targetStyle
static final SimpleAttributeSet targetStyle
Definition: TregexPatternCell.java:69
grammarscope.editor.component.TregexPatternCell.operatorStyle
static final SimpleAttributeSet operatorStyle
Definition: TregexPatternCell.java:54
grammarscope.editor.component.TregexPatternCell.categoryStyle
static final SimpleAttributeSet categoryStyle
Definition: TregexPatternCell.java:59
grammarscope.editor.component.TregexPatternCell.targetPattern
static final Pattern targetPattern
Definition: TregexPatternCell.java:49
grammarscope.editor.component.TregexPatternCell.regExpStyle
static final SimpleAttributeSet regExpStyle
Definition: TregexPatternCell.java:64