Uses of Interface
org.thymeleaf.fragment.IFragmentSpec

Packages that use IFragmentSpec
org.thymeleaf   
org.thymeleaf.fragment   
 

Uses of IFragmentSpec in org.thymeleaf
 

Methods in org.thymeleaf with parameters of type IFragmentSpec
 String TemplateEngine.process(String templateName, IContext context, IFragmentSpec fragmentSpec)
           Process a template.
 void TemplateEngine.process(String templateName, IContext context, IFragmentSpec fragmentSpec, Writer writer)
           Process a template.
 void TemplateEngine.process(String templateName, IProcessingContext processingContext, IFragmentSpec fragmentSpec, Writer writer)
           Process a template.
 

Uses of IFragmentSpec in org.thymeleaf.fragment
 

Classes in org.thymeleaf.fragment that implement IFragmentSpec
 class ChainedFragmentSpec
           Implementation of IFragmentSpec that allows the execution of two fragment specs in chain, effectively performing a double-filering.
 class DOMSelectorFragmentSpec
           Implementation of the IFragmentSpec interface that extracts fragments of DOM trees using a DOMSelector object.
 class ElementAndAttributeNameFragmentSpec
           Fragment specification that extracts a specific element from a Node tree by its name, or by the value of one of its attributes.
 class WholeFragmentSpec
           Implementation of IFragmentSpec that simply returns whole templates, this is the same nodes used as input with no modification, traversing or selection of any kind.
 

Methods in org.thymeleaf.fragment that return IFragmentSpec
 IFragmentSpec FragmentAndTarget.getFragmentSpec()
           Returns the IFragmentSpec that will be applied to the template.
 IFragmentSpec ChainedFragmentSpec.getFragmentSpec1()
           Returns the first fragment spec in the chain.
 IFragmentSpec ChainedFragmentSpec.getFragmentSpec2()
           Returns the second fragment spec in the chain.
 

Constructors in org.thymeleaf.fragment with parameters of type IFragmentSpec
ChainedFragmentSpec(IFragmentSpec fragmentSpec1, IFragmentSpec fragmentSpec2)
           Creates a new instance of this fragment spec.
FragmentAndTarget(String templateName, IFragmentSpec fragmentSpec)
           Create a new instance of this class.
 



Copyright © 2013 The THYMELEAF team. All Rights Reserved.