public interface ITextStructureHandler
Structure handler class meant to be used by ITextProcessor implementations.
Structure handlers allow processors to instruct the engine to perform a series of actions that cannot be done directly from the processors themselves, usually because these actions are applied or have effects on scopes broader than the processed events themselves.
ITextProcessor| Modifier and Type | Method and Description |
|---|---|
void |
removeText()
Instructs the engine to remove the entire event that is being processed.
|
void |
replaceWith(IModel model,
boolean processable)
Instructs the engine to replace the current event with the specified model (a
IModel). |
void |
reset()
Resets all actions specified so far for the current processor execution.
|
void |
setText(CharSequence text)
Instructs the engine to set a new text for this Text event.
|
void reset()
Resets all actions specified so far for the current processor execution.
void setText(CharSequence text)
Instructs the engine to set a new text for this Text event.
text - the new textvoid replaceWith(IModel model, boolean processable)
Instructs the engine to replace the current event with the specified model (a IModel).
model - the model to be used as a replacement.processable - whether the model should be considered processable or not.void removeText()
Instructs the engine to remove the entire event that is being processed.
Copyright © 2017 The THYMELEAF team. All rights reserved.