| org.netbeans.editor.TextBatchProcessor
TextBatchProcessor | public interface TextBatchProcessor (Code) | | Process the batches of the text in the document. This interface can be passed
to the BaseDocument.processText() and this method then calls the
processTextBatch() to process the text batches.
author: Miloslav Metelka version: 1.00 |
Method Summary | |
public int | processTextBatch(BaseDocument doc, int startPos, int endPos, boolean lastBatch) Process one batch of the text.
non-negative number to stop the batch processing. |
processTextBatch | public int processTextBatch(BaseDocument doc, int startPos, int endPos, boolean lastBatch)(Code) | | Process one batch of the text.
non-negative number to stop the batch processing. The returnedvalue is remembered and returned from BaseDocument.processText().Negative value means to continue with the next batch. |
|
|