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

org.xmlunit.input.ElementContentWhitespaceStrippedSource Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
/*
  This file is licensed to You 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.xmlunit.input;

import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import org.xmlunit.util.Convert;
import org.xmlunit.util.Nodes;

/**
 * A source that is obtained from a different source by removing all
 * text nodes that only contain whitespace.
 *
 * @since XMLUnit 2.6.0
 */
public class ElementContentWhitespaceStrippedSource extends DOMSource {

    /**
     * Creates a new source that consists of the given source with all
     * text nodes that only contain whitespace stripped.
     *
     * @param originalSource the original source
     */
    public ElementContentWhitespaceStrippedSource(Source originalSource) {
        super(Nodes.stripElementContentWhitespace(Convert.toDocument(originalSource)));
        setSystemId(originalSource.getSystemId());
    }

    /**
     * Creates a new source that consists of the given source with all
     * text nodes that only contain whitespace stripped.
     *
     * @param originalSource the original source
     * @param dbf the DocumentBuilderFactory to use when creating a
     * DOM document from originalSource
     */
    public ElementContentWhitespaceStrippedSource(Source originalSource,
                                                  DocumentBuilderFactory dbf) {
        super(Nodes.stripElementContentWhitespace(Convert.toDocument(originalSource, dbf)));
        setSystemId(originalSource.getSystemId());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy