src/com/sun/org/apache/xml/internal/serializer/EmptySerializer.java

Print this page

        

*** 1,13 **** /* * reserved comment block * DO NOT REMOVE OR ALTER! */ /* ! * Copyright 2003-2004 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 * --- 1,15 ---- /* * reserved comment block * DO NOT REMOVE OR ALTER! */ /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you 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 *
*** 25,35 **** import java.io.IOException; import java.io.OutputStream; import java.io.Writer; import java.util.Hashtable; import java.util.Properties; ! import java.util.Vector; import javax.xml.transform.SourceLocator; import javax.xml.transform.Transformer; import org.w3c.dom.Node; --- 27,37 ---- import java.io.IOException; import java.io.OutputStream; import java.io.Writer; import java.util.Hashtable; import java.util.Properties; ! import java.util.ArrayList; import javax.xml.transform.SourceLocator; import javax.xml.transform.Transformer; import org.w3c.dom.Node;
*** 148,160 **** public void serialize(Node node) throws IOException { couldThrowIOException(); } /** ! * @see SerializationHandler#setCdataSectionElements(java.util.Vector) */ ! public void setCdataSectionElements(Vector URI_and_localNames) { aMethodIsCalled(); } /** * @see SerializationHandler#setEscaping(boolean) --- 150,162 ---- public void serialize(Node node) throws IOException { couldThrowIOException(); } /** ! * @see SerializationHandler#setCdataSectionElements(java.util.ArrayList<String>) */ ! public void setCdataSectionElements(ArrayList<String> URI_and_localNames) { aMethodIsCalled(); } /** * @see SerializationHandler#setEscaping(boolean)
*** 761,766 **** --- 763,789 ---- */ public void setDTDEntityExpansion(boolean expand) { aMethodIsCalled(); } + + + public String getOutputProperty(String name) { + aMethodIsCalled(); + return null; + } + + public String getOutputPropertyDefault(String name) { + aMethodIsCalled(); + return null; + } + + public void setOutputProperty(String name, String val) { + aMethodIsCalled(); + + } + + public void setOutputPropertyDefault(String name, String val) { + aMethodIsCalled(); + + } }