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

Print this page

        

*** 20,30 **** /* * $Id: ToSAXHandler.java,v 1.2.4.1 2005/09/22 11:03:15 pvedula Exp $ */ package com.sun.org.apache.xml.internal.serializer; ! import java.util.Vector; import org.xml.sax.Attributes; import org.xml.sax.ContentHandler; import org.xml.sax.ErrorHandler; import org.xml.sax.SAXException; --- 20,30 ---- /* * $Id: ToSAXHandler.java,v 1.2.4.1 2005/09/22 11:03:15 pvedula Exp $ */ package com.sun.org.apache.xml.internal.serializer; ! import java.util.ArrayList; import org.xml.sax.Attributes; import org.xml.sax.ContentHandler; import org.xml.sax.ErrorHandler; import org.xml.sax.SAXException;
*** 232,244 **** } /** * Does nothing. The setting of CDATA section elements has an impact on * stream serializers. ! * @see SerializationHandler#setCdataSectionElements(java.util.Vector) */ ! public void setCdataSectionElements(Vector URI_and_localNames) { // do nothing } /** Set whether or not namespace declarations (e.g. --- 232,244 ---- } /** * Does nothing. The setting of CDATA section elements has an impact on * stream serializers. ! * @see SerializationHandler#setCdataSectionElements(java.util.ArrayList<String>) */ ! public void setCdataSectionElements(ArrayList<String> URI_and_localNames) { // do nothing } /** Set whether or not namespace declarations (e.g.