Package org.thymeleaf.model
Interface IProcessingInstruction
-
- All Superinterfaces:
ITemplateEvent
public interface IProcessingInstruction extends 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContent()
Returns the content of the Processing Instruction.String
getProcessingInstruction()
Returns the complete Processing Instruction as a String.String
getTarget()
Returns the target of the Processing Instruction.-
Methods inherited from interface org.thymeleaf.model.ITemplateEvent
accept, getCol, getLine, getTemplateName, hasLocation, write
-
-
-
-
Method Detail
-
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.
-
-