Package | Description |
---|---|
org.netbeans.editor | |
org.netbeans.editor.ext |
Completion Design View
|
Modifier and Type | Interface and Description |
---|---|
interface |
AdjustFinder
Advanced finder that can adjust the start and limit position
of the search.
|
static interface |
FinderFactory.BlocksFinder
Finder that constructs [begin-pos, end-pos] blocks.
|
static interface |
FinderFactory.StringFinder
Finder that looks for some search expression expressed by string.
|
Modifier and Type | Class and Description |
---|---|
static class |
FinderFactory.AbstractBlocksFinder
Support for creating blocks finders.
|
static class |
FinderFactory.AbstractFinder
Abstract finder implementation.
|
static class |
FinderFactory.AcceptorBwdFinder |
static class |
FinderFactory.AcceptorFwdFinder |
static class |
FinderFactory.CharArrayBwdFinder
Searches for anyone of the specified chars in backward direction.
|
static class |
FinderFactory.CharArrayFwdFinder
Searches for anyone of the specified chars in forward direction.
|
static class |
FinderFactory.CharBwdFinder
Searches for the specified char in backward direction.
|
static class |
FinderFactory.CharFwdFinder
Searches for the specified char in forward direction.
|
static class |
FinderFactory.FalseBlocksFinder |
static class |
FinderFactory.FalseFinder
Request non-existent position immediately
|
static class |
FinderFactory.GenericBwdFinder
Generic backward finder that simplifies the search process.
|
static class |
FinderFactory.GenericFinder |
static class |
FinderFactory.GenericFwdFinder
Generic forward finder that simplifies the search process.
|
static class |
FinderFactory.NextWordFwdFinder
Next word forward finder
|
static class |
FinderFactory.NonWhiteBwdFinder
Find first non-white character backward
|
static class |
FinderFactory.NonWhiteFwdFinder
Find first non-white character forward
|
static class |
FinderFactory.PosVisColFwdFinder
Finder for getting visual column value for particular position.
|
static class |
FinderFactory.PreviousWordBwdFinder
Find start of the word.
|
static class |
FinderFactory.StringBlocksFinder
String forward finder that creates position blocks
|
static class |
FinderFactory.StringBwdFinder
String backward finder
|
static class |
FinderFactory.StringFwdFinder
String forward finder
|
static class |
FinderFactory.TrueFinder
Return successful match on the first searched char
|
static class |
FinderFactory.VisColPosFwdFinder
Finder for getting position from visual column knowledge.
|
static class |
FinderFactory.WhiteBwdFinder
Find first white character backward
|
static class |
FinderFactory.WhiteFwdFinder
Find first white character forward
|
static class |
FinderFactory.WholeWordsBlocksFinder
String forward finder that finds whole words only
and that creates position blocks.
|
static class |
FinderFactory.WholeWordsBwdFinder
String backward finder that finds whole words only.
|
static class |
FinderFactory.WholeWordsFwdFinder
String forward finder that finds whole words only.
|
class |
WordMatch
Word matching support enables to fill in the rest of the word
when knowing the begining of the word.
|
Modifier and Type | Method and Description |
---|---|
int |
BaseDocument.find(Finder finder,
int startPos,
int limitPos)
Find something in document using a finder.
|
int |
SyntaxSupport.findInsideBlocks(Finder finder,
int startPos,
int endPos,
int[] blocks) |
int |
SyntaxSupport.findOutsideBlocks(Finder finder,
int startPos,
int endPos,
int[] blocks) |
Modifier and Type | Class and Description |
---|---|
static class |
ExtFinderFactory.LineBlocksFinder
Finder that collects the whole lines and calls
the lineFound() method that can do a local find.
|
static class |
ExtFinderFactory.LineBwdFinder
Finder that collects the whole lines and calls
the lineFound() method that can do a local find.
|
static class |
ExtFinderFactory.LineFwdFinder
Finder that collects the whole lines and calls
the lineFound() method that can do a local find.
|
class |
ExtSyntaxSupport.BracketFinder
Finder for the matching bracket.
|