
org.thymeleaf.fragment.WholeFragmentSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thymeleaf Show documentation
Show all versions of thymeleaf Show documentation
Modern server-side Java template engine for both web and standalone environments
/*
* =============================================================================
*
* Copyright (c) 2011-2012, 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.fragment;
import java.util.List;
import org.thymeleaf.Configuration;
import org.thymeleaf.dom.Node;
/**
*
* Implementation of {@link IFragmentSpec} that simply returns
* whole templates, this is the same nodes used as input with
* no modification, traversing or selection of any kind.
*
*
* Objects of this class are thread-safe.
*
*
* @author Daniel Fernández
*
* @since 2.0.9
*
*/
public final class WholeFragmentSpec implements IFragmentSpec {
/**
*
* Singleton instance.
*
*
* This instance is thread-safe.
*
*/
public static final WholeFragmentSpec INSTANCE = new WholeFragmentSpec();
/**
*
* Creates a new instance. In most cases {@link #INSTANCE} can be used
* instead of creating new objects of this class.
*
*/
public WholeFragmentSpec() {
super();
}
public List extractFragment(final Configuration configuration, final List nodes) {
return nodes;
}
@Override
public String toString() {
return "(WHOLE TEMPLATE)";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy