src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/XSLOutputAttributes.java
changeset 47359 e1a6c0168741
parent 47216 71c04702a3d5
child 48409 5ab69533994b
equal deleted inserted replaced
47358:d07d5f7cab35 47359:e1a6c0168741
     1 /*
     1 /*
     2  * reserved comment block
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT REMOVE OR ALTER!
     3  * @LastModified: Oct 2017
     4  */
     4  */
     5 /*
     5 /*
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     7  * contributor license agreements.  See the NOTICE file distributed with
     7  * contributor license agreements.  See the NOTICE file distributed with
     8  * this work for additional information regarding copyright ownership.
     8  * this work for additional information regarding copyright ownership.
    19  * limitations under the License.
    19  * limitations under the License.
    20  */
    20  */
    21 
    21 
    22 package com.sun.org.apache.xml.internal.serializer;
    22 package com.sun.org.apache.xml.internal.serializer;
    23 
    23 
    24 import java.util.ArrayList;
    24 import java.util.List;
    25 
    25 
    26 /**
    26 /**
    27  * This interface has methods associated with the XSLT xsl:output attribues
    27  * This interface has methods associated with the XSLT xsl:output attribues
    28  * specified in the stylesheet that effect the format of the document output.
    28  * specified in the stylesheet that effect the format of the document output.
    29  *
    29  *
   122      * qName is not given because the prefix does not matter, only the namespace
   122      * qName is not given because the prefix does not matter, only the namespace
   123      * URI to which that prefix would map matters, so the prefix itself is not
   123      * URI to which that prefix would map matters, so the prefix itself is not
   124      * relevant in specifying which elements have their text to be output as
   124      * relevant in specifying which elements have their text to be output as
   125      * CDATA sections.
   125      * CDATA sections.
   126      */
   126      */
   127     public void setCdataSectionElements(ArrayList<String> URI_and_localNames);
   127     public void setCdataSectionElements(List<String> URI_and_localNames);
   128 
   128 
   129     /** Set the value coming from the xsl:output doctype-public and doctype-system stylesheet properties
   129     /** Set the value coming from the xsl:output doctype-public and doctype-system stylesheet properties
   130      * @param system the system identifier to be used in the DOCTYPE declaration
   130      * @param system the system identifier to be used in the DOCTYPE declaration
   131      * in the output document.
   131      * in the output document.
   132      * @param pub the public identifier to be used in the DOCTYPE declaration in
   132      * @param pub the public identifier to be used in the DOCTYPE declaration in