Path: blob/master/src/java.xml/share/classes/javax/xml/transform/Result.java
40948 views
/*1* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package javax.xml.transform;2627/**28* <p>An object that implements this interface contains the information29* needed to build a transformation result tree.30*31* @author Jeff Suttor32* @since 1.433*/34public interface Result {3536/**37* The name of the processing instruction that is sent if the38* result tree disables output escaping.39*40* <p>Normally, result tree serialization escapes{@literal & and <} (and41* possibly other characters) when outputting text nodes.42* This ensures that the output is well-formed XML. However,43* it is sometimes convenient to be able to produce output that is44* almost, but not quite well-formed XML; for example,45* the output may include ill-formed sections that will46* be transformed into well-formed XML by a subsequent non-XML aware47* process. If a processing instruction is sent with this name,48* serialization should be output without any escaping.49*50* <p>Result DOM trees may also have PI_DISABLE_OUTPUT_ESCAPING and51* PI_ENABLE_OUTPUT_ESCAPING inserted into the tree.52*53* @see <a href="http://www.w3.org/TR/xslt#disable-output-escaping">disable-output-escaping in XSLT Specification</a>54*/55public static final String PI_DISABLE_OUTPUT_ESCAPING =56"javax.xml.transform.disable-output-escaping";5758/**59* The name of the processing instruction that is sent60* if the result tree enables output escaping at some point after having61* received a PI_DISABLE_OUTPUT_ESCAPING processing instruction.62*63* @see <a href="http://www.w3.org/TR/xslt#disable-output-escaping">disable-output-escaping in XSLT Specification</a>64*/65public static final String PI_ENABLE_OUTPUT_ESCAPING =66"javax.xml.transform.enable-output-escaping";6768/**69* Set the system identifier for this Result.70*71* <p>If the Result is not to be written to a file, the system identifier is optional.72* The application may still want to provide one, however, for use in error messages73* and warnings, or to resolve relative output identifiers.74*75* @param systemId The system identifier as a URI string.76*/77public void setSystemId(String systemId);7879/**80* Get the system identifier that was set with setSystemId.81*82* @return The system identifier that was set with setSystemId,83* or null if setSystemId was not called.84*/85public String getSystemId();86}878889