Package org.thymeleaf.inline
Class NoOpInliner
- java.lang.Object
-
- org.thymeleaf.inline.NoOpInliner
-
-
Field Summary
Fields Modifier and Type Field Description static NoOpInlinerINSTANCE
-
Constructor Summary
Constructors Modifier Constructor Description privateNoOpInliner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Returns an identifiable name for the inlinerjava.lang.CharSequenceinline(ITemplateContext context, ICDATASection cdataSection)Perform the inlining operation on anICDATASectionnode.java.lang.CharSequenceinline(ITemplateContext context, IComment comment)Perform the inlining operation on anICommentnode.java.lang.CharSequenceinline(ITemplateContext context, IText text)Perform the inlining operation on anITextnode.
-
-
-
Field Detail
-
INSTANCE
public static final NoOpInliner INSTANCE
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:IInlinerReturns an identifiable name for the inliner
-
inline
public java.lang.CharSequence inline(ITemplateContext context, IText text)
Description copied from interface:IInlinerPerform the inlining operation on an
ITextnode.
-
inline
public java.lang.CharSequence inline(ITemplateContext context, ICDATASection cdataSection)
Description copied from interface:IInlinerPerform the inlining operation on an
ICDATASectionnode.
-
inline
public java.lang.CharSequence inline(ITemplateContext context, IComment comment)
Description copied from interface:IInlinerPerform the inlining operation on an
ICommentnode.
-
-