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