Package org.thymeleaf.model
Interface ICloseElementTag
- All Superinterfaces:
IElementTag,ITemplateEvent
Event interface defining a close element tag.
Note that any implementations of this interface should be immutable.
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether this close tag is unmatched, i.e.Methods inherited from interface org.thymeleaf.model.IElementTag
getElementCompleteName, getElementDefinition, getTemplateMode, isSyntheticMethods inherited from interface org.thymeleaf.model.ITemplateEvent
accept, getCol, getLine, getTemplateName, hasLocation, write
-
Method Details
-
isUnmatched
boolean isUnmatched()Returns whether this close tag is unmatched, i.e. there is no corresponding previous open tag for it.
- Returns:
- true if the tag is unmatched, false if not.
-