< prev index next >

src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/output/C14nXmlOutput.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 36,46 **** import com.sun.xml.internal.bind.marshaller.CharacterEscapeHandler; /** * {@link XmlOutput} that generates canonical XML. * - * @see com.sun.xml.internal.bind.api.C14nSupport_ArchitectureDocument * @author Kohsuke Kawaguchi */ public class C14nXmlOutput extends UTF8XmlOutput { public C14nXmlOutput(OutputStream out, Encoded[] localNames, boolean namedAttributesAreOrdered, CharacterEscapeHandler escapeHandler) { super(out, localNames, escapeHandler); --- 36,45 ----
*** 66,76 **** /** * Hosts other attributes whose name are not statically known * (AKA attribute wildcard.) * * As long as this map is empty, there's no need for sorting. - * see {@link com.sun.xml.internal.bind.api.C14nSupport_ArchitectureDocument} for more details. */ private final FinalArrayList<DynamicAttribute> otherAttributes = new FinalArrayList<DynamicAttribute>(); /** * True if {@link JAXBRIContext} is created with c14n support on, --- 65,74 ----
< prev index next >