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

org.thymeleaf.standard.processor.attr.StandardAttrprependAttrProcessor Maven / Gradle / Ivy

There is a newer version: 3.1.2.RELEASE
Show newest version
/*
 * =============================================================================
 * 
 *   Copyright (c) 2011-2014, 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.standard.processor.attr;

import org.thymeleaf.Arguments;
import org.thymeleaf.dom.Element;

/**
 * Prepends the result of an expression to any attribute/s, eg:
 * 

* <input type="button" value="Do it!" class="btn" th:attrappend="class=${cssStyle + ' '}" /> *

* If you process this template with the cssStyle variable set to "warning", you will get: *

* <input type="button" value="Do it!" class="warning btn" /> * * @author Daniel Fernández * @since 1.0 */ public final class StandardAttrprependAttrProcessor extends AbstractStandardAttributeModifierAttrProcessor { public static final int ATTR_PRECEDENCE = 800; public static final String ATTR_NAME = "attrprepend"; public StandardAttrprependAttrProcessor() { // We will use restricted expression evaluation mode super(ATTR_NAME, true); } @Override public int getPrecedence() { return ATTR_PRECEDENCE; } @Override protected ModificationType getModificationType( final Arguments arguments, final Element element, final String attributeName, final String newAttributeName) { return ModificationType.PREPEND; } @Override protected boolean removeAttributeIfEmpty( final Arguments arguments, final Element element, final String attributeName, final String newAttributeName) { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy