Home | History | Annotate | Download | only in xml

Lines Matching refs:standalone

32 	/** XML header template for standalone documents */
33 private static final String HEADER_STANDALONE = "<?xml version=\"1.0\" encoding=\"%s\" standalone=\"yes\"?>";
50 * @param standalone
51 * <code>true</code> if this is a standalone document
59 final boolean standalone, final Writer writer) throws IOException {
61 writeHeader(rootnode, pubId, system, encoding, standalone, writer);
77 * @param standalone
78 * <code>true</code> if this is a standalone document
86 final boolean standalone, final OutputStream output)
88 this(rootnode, pubId, system, encoding, standalone,
100 final boolean standalone, final Writer writer) throws IOException {
101 if (standalone) {