Package org.thymeleaf.model
Interface IProcessingInstruction
- All Superinterfaces:
ITemplateEvent
Event interface defining a Processing Instruction.
Note that any implementations of this interface should be immutable.
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
Method Summary
Modifier and TypeMethodDescriptionReturns the content of the Processing Instruction.Returns the complete Processing Instruction as a String.Returns the target of the Processing Instruction.Methods inherited from interface org.thymeleaf.model.ITemplateEvent
accept, getCol, getLine, getTemplateName, hasLocation, write
-
Method Details
-
getTarget
String getTarget()Returns the target of the Processing Instruction.
- Returns:
- the Processing Instruction target.
-
getContent
String getContent()Returns the content of the Processing Instruction.
- Returns:
- the Processing Instruction content.
-
getProcessingInstruction
String getProcessingInstruction()Returns the complete Processing Instruction as a String.
- Returns:
- the complete Processing Instruction.
-