All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.thymeleaf.processor.element.IElementModelStructureHandler Maven / Gradle / Ivy

Go to download

Modern server-side Java template engine for both web and standalone environments

There is a newer version: 3.1.3.RELEASE
Show newest version
/*
 * =============================================================================
 * 
 *   Copyright (c) 2011-2016, The THYMELEAF team (http://www.thymeleaf.org)
 * 
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 * 
 *       http://www.apache.org/licenses/LICENSE-2.0
 * 
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 * 
 * =============================================================================
 */
package org.thymeleaf.processor.element;

import org.thymeleaf.context.ITemplateContext;
import org.thymeleaf.engine.TemplateData;
import org.thymeleaf.inline.IInliner;

/**
 * 

* Structure handler class meant to be used by {@link IElementModelProcessor} implementations. *

*

* Structure handlers allow processors to instruct the engine to perform a series of actions that cannot * be done directly from the processors themselves, usually because these actions are applied or have effects * on scopes broader than the processed events themselves. *

* * @author Daniel Fernández * @since 3.0.0 * */ public interface IElementModelStructureHandler { /** *

* Resets all actions specified so far for the current processor execution. *

*/ public void reset(); /** *

* Instructs the engine to set a new local variable. *

* * @param name the name of the variable. * @param value the value of the variable. */ public void setLocalVariable(final String name, final Object value); /** *

* Instructs the engine to remove a local variable. *

* * @param name the name of the variable. */ public void removeLocalVariable(final String name); /** *

* Instructs the engine to set a new selection target. *

*

* The selection target is the object on which selection expressions (*{...}) are executed. * In the Standard Dialect, this selection target is usually modified by means of the th:object * attribute, but custom processors can do it too. Note the selection target has the same scope as a local * variable, and will therefore be accessible only inside the body of the element being processed. *

*

* See {@link ITemplateContext#getSelectionTarget()} *

* * @param selectionTarget the selection target to be set. */ public void setSelectionTarget(final Object selectionTarget); /** *

* Instructs the engine to set a new inliner. *

*

* Inliners are used for processing all text nodes ({@link org.thymeleaf.model.IText} events) appearing * in the body of the element being processed. This is the mechanism used by the th:inline attribute to * enable inlining in any of the specified modes (text, javascript, etc). *

*

* See {@link ITemplateContext#getInliner()} *

* * @param inliner the inliner. */ public void setInliner(final IInliner inliner); /** *

* Instructs the engine to set a new template data. *

*

* This method modifies the metadata about the template that is actually being processed. When * inserting fragments, this allows the engine to know data about the specific fragment being * processed, and also the complete stack of fragments being nested. *

*

* See {@link ITemplateContext#getTemplateData()} *

* * @param templateData the template data. */ public void setTemplateData(final TemplateData templateData); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy