Skip to content

Commit

Permalink
Minor javadoc fix in TemplateProcessingTracer
Browse files Browse the repository at this point in the history
  • Loading branch information
ddekany committed May 8, 2024
1 parent 68e95a3 commit e55ff1e
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* <p>
* Use {@link Environment#setTemplateProcessingTracer(TemplateProcessingTracer)} to set a tracer for the current
* environment.
*
*
* @since 2.3.33
*/
public interface TemplateProcessingTracer {
Expand All @@ -36,22 +36,21 @@ public interface TemplateProcessingTracer {
* Invoked by {@link Environment} whenever it starts processing a new template element. A template element is a
* directive call, an interpolation (like <code>${...}</code>), a comment block, or static text. Expressions
* are not template elements.
*
* @since 2.3.23
*/
void enterElement(Environment env, TracedElement tracedElement);

/**
* Invoked by {@link Environment} whenever it completes processing a new template element.
*
* @see #enterElement(Environment, TracedElement)
*
* @since 2.3.23
*/
void exitElement(Environment env, TracedElement tracedElement);

/**
* Information about the template element that we enter of exit.
* Information about the template element that we enter of exit; do NOT implement this (outside FreeMarker), as
* new methods can be added to this anytime!
*
* @since 2.3.33
*/
interface TracedElement {
/**
Expand Down

0 comments on commit e55ff1e

Please sign in to comment.