Package org.thymeleaf.inline
Class NoOpInliner
- Object
-
- org.thymeleaf.inline.NoOpInliner
-
-
Field Summary
Fields Modifier and Type Field Description static NoOpInliner
INSTANCE
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Returns an identifiable name for the inlinerCharSequence
inline(ITemplateContext context, ICDATASection cdataSection)
Perform the inlining operation on anICDATASection
node.CharSequence
inline(ITemplateContext context, IComment comment)
Perform the inlining operation on anIComment
node.CharSequence
inline(ITemplateContext context, IText text)
Perform the inlining operation on anIText
node.
-
-
-
Field Detail
-
INSTANCE
public static final NoOpInliner INSTANCE
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:IInliner
Returns an identifiable name for the inliner
-
inline
public CharSequence inline(ITemplateContext context, IText text)
Description copied from interface:IInliner
Perform the inlining operation on an
IText
node.
-
inline
public CharSequence inline(ITemplateContext context, ICDATASection cdataSection)
Description copied from interface:IInliner
Perform the inlining operation on an
ICDATASection
node.
-
inline
public CharSequence inline(ITemplateContext context, IComment comment)
Description copied from interface:IInliner
Perform the inlining operation on an
IComment
node.
-
-