Package | Description |
---|---|
org.netbeans.modules.parsing.spi.indexing | |
org.netbeans.modules.parsing.spi.indexing.support |
Modifier and Type | Method and Description |
---|---|
abstract void |
SourceIndexerFactory.filesDeleted(Iterable<? extends Indexable> deleted,
Context context)
Called by indexing infrastructure to allow indexer to clean indexes for deleted files.
|
abstract void |
SourceIndexerFactory.filesDirty(Iterable<? extends Indexable> dirty,
Context context)
Called by indexing infrastructure to notify indexer that a file was modified and so its
index may contain stale data.
|
protected abstract void |
BinaryIndexer.index(Context context)
Indexes given binary root.
|
protected abstract void |
EmbeddingIndexer.index(Indexable indexable,
Parser.Result parserResult,
Context context)
Indexes the given AST (parser result).
|
protected abstract void |
CustomIndexer.index(Iterable<? extends Indexable> files,
Context context)
Indexes given set of files.
|
protected abstract void |
ConstrainedBinaryIndexer.FileObject>> files,
Context context)
Indexes given binary root.
|
void |
SourceIndexerFactory.scanFinished(Context context)
Notifies the indexer that scanning of a source root just finished.
|
protected void |
ConstrainedBinaryIndexer.scanFinished(Context context)
Notifies the indexer that scanning of a binary root just finished.
|
void |
BinaryIndexerFactory.scanFinished(Context context)
Notifies the indexer that scanning of a binary root just finished.
|
boolean |
SourceIndexerFactory.scanStarted(Context context)
Notifies the indexer that a source root is going to be scanned.
|
protected boolean |
ConstrainedBinaryIndexer.scanStarted(Context context)
Notifies the indexer that a binary root is going to be scanned.
|
boolean |
BinaryIndexerFactory.scanStarted(Context context)
Notifies the indexer that a binary root is going to be scanned.
|
Modifier and Type | Method and Description |
---|---|
static IndexingSupport |
IndexingSupport.getInstance(Context context)
Returns an
IndexingSupport for given indexing Context |