com.helger.html.hc.IHCConversionSettingsToNode Maven / Gradle / Ivy
/**
* Copyright (C) 2014-2016 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* 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 com.helger.html.hc;
import java.nio.charset.Charset;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.css.ICSSWriterSettings;
import com.helger.css.writer.CSSWriterSettings;
import com.helger.html.EHTMLVersion;
import com.helger.html.js.IJSWriterSettings;
import com.helger.html.js.JSWriterSettings;
import com.helger.xml.serialize.write.IXMLWriterSettings;
import com.helger.xml.serialize.write.XMLWriterSettings;
/**
* Settings interface that is used to convert HC* nodes to micro nodes.
*
* @author Philip Helger
*/
public interface IHCConversionSettingsToNode
{
/**
* @return The HTML version to be used to transform HC nodes into micro nodes.
* Never null
.
*/
@Nonnull
EHTMLVersion getHTMLVersion ();
/**
* @return The namespace URI of the HTML version. This should result in the
* same as calling getHTMLVersion().getNamespaceURI()
*/
@Nullable
String getHTMLNamespaceURI ();
/**
* @return The XML writer settings to be used. Never null
.
*/
@Nonnull
IXMLWriterSettings getXMLWriterSettings ();
/**
* @return A mutable copy of the XML writer settings to be used. Never
* null
.
*/
@Nonnull
@ReturnsMutableCopy
XMLWriterSettings getMutableXMLWriterSettings ();
/**
* @return The CSS writer settings to be used. Never null
.
*/
@Nonnull
ICSSWriterSettings getCSSWriterSettings ();
/**
* @return A mutable copy of the CSS writer settings to be used. Never
* null
.
*/
@Nonnull
@ReturnsMutableCopy
CSSWriterSettings getMutableCSSWriterSettings ();
/**
* @return The JS formatter settings to be used. Never null
.
*/
@Nonnull
IJSWriterSettings getJSWriterSettings ();
/**
* @return A mutable copy of the JS formatter settings to be used. Never
* null
.
*/
@Nonnull
@ReturnsMutableCopy
JSWriterSettings getMutableJSWriterSettings ();
/**
* @return true
if the consistency checks are enabled,
* false
otherwise.
*/
boolean areConsistencyChecksEnabled ();
/**
* @return true
if out-of-band nodes should be extracted,
* false
if not. By default true
is
* returned.
*/
boolean isExtractOutOfBandNodes ();
/**
* @return The current customizer to be used. May be null
. The
* default is null
.
*/
@Nullable
IHCCustomizer getCustomizer ();
/**
* @return The charset to be used. This is a shortcut for
* getXMLWriterSettings ().getCharset()
.
*/
@Nonnull
Charset getCharset ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy