com.sun.xml.bind.v2.runtime.output.DOMOutput Maven / Gradle / Ivy
Show all versions of jaxb-impl Show documentation
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.bind.v2.runtime.output;
import com.sun.xml.bind.v2.runtime.AssociationMap;
import com.sun.xml.bind.marshaller.SAX2DOMEx;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
/**
* {@link XmlOutput} implementation that does associative marshalling to DOM.
*
*
* This is used for binder.
*
* @author Kohsuke Kawaguchi
*/
public final class DOMOutput extends SAXOutput {
private final AssociationMap assoc;
public DOMOutput(Node node, AssociationMap assoc) {
super(new SAX2DOMEx(node));
this.assoc = assoc;
assert assoc!=null;
}
private SAX2DOMEx getBuilder() {
return (SAX2DOMEx)out;
}
@Override
public void endStartTag() throws SAXException {
super.endStartTag();
Object op = nsContext.getCurrent().getOuterPeer();
if(op!=null)
assoc.addOuter( getBuilder().getCurrentElement(), op );
Object ip = nsContext.getCurrent().getInnerPeer();
if(ip!=null)
assoc.addInner( getBuilder().getCurrentElement(), ip );
}
}