equal
deleted
inserted
replaced
20 /* |
20 /* |
21 * $Id: ToSAXHandler.java,v 1.2.4.1 2005/09/22 11:03:15 pvedula Exp $ |
21 * $Id: ToSAXHandler.java,v 1.2.4.1 2005/09/22 11:03:15 pvedula Exp $ |
22 */ |
22 */ |
23 package com.sun.org.apache.xml.internal.serializer; |
23 package com.sun.org.apache.xml.internal.serializer; |
24 |
24 |
25 import java.util.Vector; |
25 import java.util.ArrayList; |
26 |
26 |
27 import org.xml.sax.Attributes; |
27 import org.xml.sax.Attributes; |
28 import org.xml.sax.ContentHandler; |
28 import org.xml.sax.ContentHandler; |
29 import org.xml.sax.ErrorHandler; |
29 import org.xml.sax.ErrorHandler; |
30 import org.xml.sax.SAXException; |
30 import org.xml.sax.SAXException; |
232 } |
232 } |
233 |
233 |
234 /** |
234 /** |
235 * Does nothing. The setting of CDATA section elements has an impact on |
235 * Does nothing. The setting of CDATA section elements has an impact on |
236 * stream serializers. |
236 * stream serializers. |
237 * @see SerializationHandler#setCdataSectionElements(java.util.Vector) |
237 * @see SerializationHandler#setCdataSectionElements(java.util.ArrayList<String>) |
238 */ |
238 */ |
239 public void setCdataSectionElements(Vector URI_and_localNames) |
239 public void setCdataSectionElements(ArrayList<String> URI_and_localNames) |
240 { |
240 { |
241 // do nothing |
241 // do nothing |
242 } |
242 } |
243 |
243 |
244 /** Set whether or not namespace declarations (e.g. |
244 /** Set whether or not namespace declarations (e.g. |