org.thymeleaf.dom.Document Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.everit.osgi.bundles.org.thymeleaf.thymeleaf Show documentation
Show all versions of org.everit.osgi.bundles.org.thymeleaf.thymeleaf Show documentation
XML/XHTML/HTML5 template engine for Java
The newest version!
/*
* =============================================================================
*
* Copyright (c) 2011-2013, 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.dom;
import org.thymeleaf.Arguments;
import org.thymeleaf.Configuration;
import org.thymeleaf.util.Validate;
/**
*
* @author Daniel Fernández
*
* @since 2.0.0
*
*/
public final class Document extends NestableNode {
private static final long serialVersionUID = 8647371304942210133L;
private DocType docType;
public Document() {
this(null, null);
}
public Document(final DocType docType) {
this(null, docType);
}
public Document(final String documentName) {
this(documentName, null);
}
public Document(final String documentName, final DocType docType) {
super(documentName, null);
this.docType = docType;
}
public DocType getDocType() {
return this.docType;
}
public boolean hasDocType() {
return this.docType != null;
}
public void setDocType(final DocType docType) {
this.docType = docType;
}
@Override
void doAdditionalPrecomputeNestableNode(final Configuration configuration) {
if (this.docType != null) {
this.docType.process(configuration);
}
}
public void precompute(final Configuration configuration) {
Validate.notNull(configuration, "Configuration cannot be null");
precomputeNode(configuration);
}
public void process(final Arguments arguments) {
Validate.notNull(arguments, "Arguments cannot be null");
processNode(arguments);
}
public Document clone(final boolean cloneProcessors) {
return (Document) cloneNode(null, cloneProcessors);
}
@Override
Node createClonedInstance(final NestableNode newParent, final boolean cloneProcessors) {
return new Document(this.docType);
}
@Override
void doCloneNestableNodeInternals(final NestableNode node, final NestableNode newParent, final boolean cloneProcessors) {
// Nothing to be done here
}
}