Java XML Transform Usage createDefaultPropertiesForXML(boolean omitXMLDeclaration)

Here you can find the source of createDefaultPropertiesForXML(boolean omitXMLDeclaration)

Description

Method for static initializer

License

Apache License

Declaration

private static Properties createDefaultPropertiesForXML(boolean omitXMLDeclaration) 

Method Source Code

//package com.java2s;
/*//from  w ww.ja  va2 s  . c o m
 * Copyright 1999-2005 The Apache Software Foundation.
 *
 * Licensed 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.
 */

import java.util.Properties;
import javax.xml.transform.OutputKeys;

public class Main {
    /**
     * Method for static initializer
     */
    private static Properties createDefaultPropertiesForXML(boolean omitXMLDeclaration) {
        final Properties format = new Properties();
        format.put(OutputKeys.METHOD, "xml");
        format.put(OutputKeys.OMIT_XML_DECLARATION, (omitXMLDeclaration ? "yes" : "no"));
        format.put(OutputKeys.INDENT, "yes");
        return format;
    }
}

Related

  1. compareStreamSource(StreamSource src1, StreamSource src2)
  2. convert(final Element element)
  3. convertDisplay(Object object)
  4. convertMessageToInputStream(Source src)
  5. createAndGetFactory(Collection schemaSources)
  6. createSafeReader(InputStream inputStream)
  7. createSource(InputStream is)
  8. createStaxResult(XMLStreamWriter streamWriter)
  9. createStaxSource(XMLStreamReader streamReader)