public interface IElementsProcessingResultHandler
Modifier and Type | Method and Description |
---|---|
void |
handleElementsProcessingCancellation(java.lang.String type,
IAnalyzableElement startElement)
This method will be called by ClassesProcessingTask if the search
was cancelled during its processing.
|
void |
handleElementsProcessingResult(java.lang.String type,
IAnalyzableElement startElement,
ProcessingResult<? extends IAnalyzableElement> result)
This method will be called by ClassesProcessingTask after successfully
completed the processing.
|
void handleElementsProcessingResult(java.lang.String type, IAnalyzableElement startElement, ProcessingResult<? extends IAnalyzableElement> result)
type
- Specifies the type of processingstartElement
- The element on which the processing was started (must not be null).result
- The collection containing all found elements (must not be null).void handleElementsProcessingCancellation(java.lang.String type, IAnalyzableElement startElement)
type
- Specifies the type of processingstartElement
- The element on which the processing was started