jaxp/src/com/sun/org/apache/xml/internal/serializer/EmptySerializer.java
author joehw
Tue, 29 Jul 2014 20:52:36 -0700
changeset 25834 aba3efbf4ec5
parent 24888 2e493ac78624
permissions -rw-r--r--
8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer. Reviewed-by: lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     1
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
     2
 * reserved comment block
7f561c08de6b Initial load
duke
parents:
diff changeset
     3
 * DO NOT REMOVE OR ALTER!
7f561c08de6b Initial load
duke
parents:
diff changeset
     4
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
     5
/*
24888
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
     6
 * Licensed to the Apache Software Foundation (ASF) under one
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
     7
 * or more contributor license agreements. See the NOTICE file
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
     8
 * distributed with this work for additional information
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
     9
 * regarding copyright ownership. The ASF licenses this file
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
    10
 * to you under the Apache License, Version 2.0 (the  "License");
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    11
 * you may not use this file except in compliance with the License.
7f561c08de6b Initial load
duke
parents:
diff changeset
    12
 * You may obtain a copy of the License at
7f561c08de6b Initial load
duke
parents:
diff changeset
    13
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    14
 *     http://www.apache.org/licenses/LICENSE-2.0
7f561c08de6b Initial load
duke
parents:
diff changeset
    15
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    16
 * Unless required by applicable law or agreed to in writing, software
7f561c08de6b Initial load
duke
parents:
diff changeset
    17
 * distributed under the License is distributed on an "AS IS" BASIS,
7f561c08de6b Initial load
duke
parents:
diff changeset
    18
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7f561c08de6b Initial load
duke
parents:
diff changeset
    19
 * See the License for the specific language governing permissions and
7f561c08de6b Initial load
duke
parents:
diff changeset
    20
 * limitations under the License.
7f561c08de6b Initial load
duke
parents:
diff changeset
    21
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    22
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
    23
 * $Id: EmptySerializer.java,v 1.2.4.1 2005/09/15 08:15:16 suresh_emailid Exp $
7f561c08de6b Initial load
duke
parents:
diff changeset
    24
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    25
package com.sun.org.apache.xml.internal.serializer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    26
7f561c08de6b Initial load
duke
parents:
diff changeset
    27
import java.io.IOException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    28
import java.io.OutputStream;
7f561c08de6b Initial load
duke
parents:
diff changeset
    29
import java.io.Writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    30
import java.util.Hashtable;
7f561c08de6b Initial load
duke
parents:
diff changeset
    31
import java.util.Properties;
24888
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
    32
import java.util.ArrayList;
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    33
7f561c08de6b Initial load
duke
parents:
diff changeset
    34
import javax.xml.transform.SourceLocator;
7f561c08de6b Initial load
duke
parents:
diff changeset
    35
import javax.xml.transform.Transformer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    36
7f561c08de6b Initial load
duke
parents:
diff changeset
    37
import org.w3c.dom.Node;
7f561c08de6b Initial load
duke
parents:
diff changeset
    38
import org.xml.sax.Attributes;
7f561c08de6b Initial load
duke
parents:
diff changeset
    39
import org.xml.sax.ContentHandler;
7f561c08de6b Initial load
duke
parents:
diff changeset
    40
import org.xml.sax.Locator;
7f561c08de6b Initial load
duke
parents:
diff changeset
    41
import org.xml.sax.SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    42
import org.xml.sax.SAXParseException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    43
7f561c08de6b Initial load
duke
parents:
diff changeset
    44
/**
7f561c08de6b Initial load
duke
parents:
diff changeset
    45
 * This class is an adapter class. Its only purpose is to be extended and
7f561c08de6b Initial load
duke
parents:
diff changeset
    46
 * for that extended class to over-ride all methods that are to be used.
7f561c08de6b Initial load
duke
parents:
diff changeset
    47
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    48
 * This class is not a public API, it is only public because it is used
7f561c08de6b Initial load
duke
parents:
diff changeset
    49
 * across package boundaries.
7f561c08de6b Initial load
duke
parents:
diff changeset
    50
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    51
 * @xsl.usage internal
7f561c08de6b Initial load
duke
parents:
diff changeset
    52
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    53
public class EmptySerializer implements SerializationHandler
7f561c08de6b Initial load
duke
parents:
diff changeset
    54
{
7f561c08de6b Initial load
duke
parents:
diff changeset
    55
    protected static final String ERR = "EmptySerializer method not over-ridden";
7f561c08de6b Initial load
duke
parents:
diff changeset
    56
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    57
     * @see SerializationHandler#asContentHandler()
7f561c08de6b Initial load
duke
parents:
diff changeset
    58
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    59
7f561c08de6b Initial load
duke
parents:
diff changeset
    60
    protected void couldThrowIOException() throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
    61
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
    62
        return; // don't do anything.
7f561c08de6b Initial load
duke
parents:
diff changeset
    63
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    64
7f561c08de6b Initial load
duke
parents:
diff changeset
    65
    protected void couldThrowSAXException() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
    66
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
    67
        return; // don't do anything.
7f561c08de6b Initial load
duke
parents:
diff changeset
    68
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    69
7f561c08de6b Initial load
duke
parents:
diff changeset
    70
    protected void couldThrowSAXException(char[] chars, int off, int len) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
    71
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
    72
        return; // don't do anything.
7f561c08de6b Initial load
duke
parents:
diff changeset
    73
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    74
7f561c08de6b Initial load
duke
parents:
diff changeset
    75
    protected void couldThrowSAXException(String elemQName) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
    76
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
    77
        return; // don't do anything.
7f561c08de6b Initial load
duke
parents:
diff changeset
    78
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    79
7f561c08de6b Initial load
duke
parents:
diff changeset
    80
    protected void couldThrowException() throws Exception
7f561c08de6b Initial load
duke
parents:
diff changeset
    81
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
    82
        return; // don't do anything.
7f561c08de6b Initial load
duke
parents:
diff changeset
    83
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    84
7f561c08de6b Initial load
duke
parents:
diff changeset
    85
    void aMethodIsCalled()
7f561c08de6b Initial load
duke
parents:
diff changeset
    86
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
    87
7f561c08de6b Initial load
duke
parents:
diff changeset
    88
        // throw new RuntimeException(err);
7f561c08de6b Initial load
duke
parents:
diff changeset
    89
        return;
7f561c08de6b Initial load
duke
parents:
diff changeset
    90
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    91
7f561c08de6b Initial load
duke
parents:
diff changeset
    92
7f561c08de6b Initial load
duke
parents:
diff changeset
    93
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    94
     * @see SerializationHandler#asContentHandler()
7f561c08de6b Initial load
duke
parents:
diff changeset
    95
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    96
    public ContentHandler asContentHandler() throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
    97
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
    98
        couldThrowIOException();
7f561c08de6b Initial load
duke
parents:
diff changeset
    99
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   100
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   101
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   102
     * @see SerializationHandler#setContentHandler(org.xml.sax.ContentHandler)
7f561c08de6b Initial load
duke
parents:
diff changeset
   103
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   104
    public void setContentHandler(ContentHandler ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
   105
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   106
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   107
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   108
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   109
     * @see SerializationHandler#close()
7f561c08de6b Initial load
duke
parents:
diff changeset
   110
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   111
    public void close()
7f561c08de6b Initial load
duke
parents:
diff changeset
   112
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   113
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   114
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   115
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   116
     * @see SerializationHandler#getOutputFormat()
7f561c08de6b Initial load
duke
parents:
diff changeset
   117
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   118
    public Properties getOutputFormat()
7f561c08de6b Initial load
duke
parents:
diff changeset
   119
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   120
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   121
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   122
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   123
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   124
     * @see SerializationHandler#getOutputStream()
7f561c08de6b Initial load
duke
parents:
diff changeset
   125
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   126
    public OutputStream getOutputStream()
7f561c08de6b Initial load
duke
parents:
diff changeset
   127
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   128
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   129
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   130
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   131
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   132
     * @see SerializationHandler#getWriter()
7f561c08de6b Initial load
duke
parents:
diff changeset
   133
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   134
    public Writer getWriter()
7f561c08de6b Initial load
duke
parents:
diff changeset
   135
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   136
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   137
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   138
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   139
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   140
     * @see SerializationHandler#reset()
7f561c08de6b Initial load
duke
parents:
diff changeset
   141
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   142
    public boolean reset()
7f561c08de6b Initial load
duke
parents:
diff changeset
   143
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   144
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   145
        return false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   146
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   147
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   148
     * @see SerializationHandler#serialize(org.w3c.dom.Node)
7f561c08de6b Initial load
duke
parents:
diff changeset
   149
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   150
    public void serialize(Node node) throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   151
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   152
        couldThrowIOException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   153
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   154
    /**
24888
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   155
     * @see SerializationHandler#setCdataSectionElements(java.util.ArrayList<String>)
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   156
     */
24888
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   157
    public void setCdataSectionElements(ArrayList<String> URI_and_localNames)
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   158
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   159
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   160
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   161
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   162
     * @see SerializationHandler#setEscaping(boolean)
7f561c08de6b Initial load
duke
parents:
diff changeset
   163
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   164
    public boolean setEscaping(boolean escape) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   165
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   166
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   167
        return false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   168
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   169
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   170
     * @see SerializationHandler#setIndent(boolean)
7f561c08de6b Initial load
duke
parents:
diff changeset
   171
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   172
    public void setIndent(boolean indent)
7f561c08de6b Initial load
duke
parents:
diff changeset
   173
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   174
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   175
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   176
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   177
     * @see SerializationHandler#setIndentAmount(int)
7f561c08de6b Initial load
duke
parents:
diff changeset
   178
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   179
    public void setIndentAmount(int spaces)
7f561c08de6b Initial load
duke
parents:
diff changeset
   180
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   181
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   182
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   183
    /**
12458
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
   184
     * @see SerializationHandler#setIsStandalone(boolean)
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
   185
     */
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
   186
    public void setIsStandalone(boolean isStandalone)
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
   187
    {
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
   188
        aMethodIsCalled();
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
   189
    }
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
   190
    /**
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   191
     * @see SerializationHandler#setOutputFormat(java.util.Properties)
7f561c08de6b Initial load
duke
parents:
diff changeset
   192
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   193
    public void setOutputFormat(Properties format)
7f561c08de6b Initial load
duke
parents:
diff changeset
   194
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   195
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   196
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   197
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   198
     * @see SerializationHandler#setOutputStream(java.io.OutputStream)
7f561c08de6b Initial load
duke
parents:
diff changeset
   199
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   200
    public void setOutputStream(OutputStream output)
7f561c08de6b Initial load
duke
parents:
diff changeset
   201
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   202
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   203
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   204
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   205
     * @see SerializationHandler#setVersion(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   206
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   207
    public void setVersion(String version)
7f561c08de6b Initial load
duke
parents:
diff changeset
   208
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   209
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   210
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   211
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   212
     * @see SerializationHandler#setWriter(java.io.Writer)
7f561c08de6b Initial load
duke
parents:
diff changeset
   213
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   214
    public void setWriter(Writer writer)
7f561c08de6b Initial load
duke
parents:
diff changeset
   215
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   216
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   217
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   218
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   219
     * @see SerializationHandler#setTransformer(javax.xml.transform.Transformer)
7f561c08de6b Initial load
duke
parents:
diff changeset
   220
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   221
    public void setTransformer(Transformer transformer)
7f561c08de6b Initial load
duke
parents:
diff changeset
   222
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   223
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   224
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   225
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   226
     * @see SerializationHandler#getTransformer()
7f561c08de6b Initial load
duke
parents:
diff changeset
   227
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   228
    public Transformer getTransformer()
7f561c08de6b Initial load
duke
parents:
diff changeset
   229
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   230
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   231
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   232
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   233
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   234
     * @see SerializationHandler#flushPending()
7f561c08de6b Initial load
duke
parents:
diff changeset
   235
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   236
    public void flushPending() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   237
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   238
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   239
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   240
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   241
     * @see ExtendedContentHandler#addAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   242
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   243
    public void addAttribute(
7f561c08de6b Initial load
duke
parents:
diff changeset
   244
        String uri,
7f561c08de6b Initial load
duke
parents:
diff changeset
   245
        String localName,
7f561c08de6b Initial load
duke
parents:
diff changeset
   246
        String rawName,
7f561c08de6b Initial load
duke
parents:
diff changeset
   247
        String type,
7f561c08de6b Initial load
duke
parents:
diff changeset
   248
        String value,
7f561c08de6b Initial load
duke
parents:
diff changeset
   249
        boolean XSLAttribute)
7f561c08de6b Initial load
duke
parents:
diff changeset
   250
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   251
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   252
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   253
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   254
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   255
     * @see ExtendedContentHandler#addAttributes(org.xml.sax.Attributes)
7f561c08de6b Initial load
duke
parents:
diff changeset
   256
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   257
    public void addAttributes(Attributes atts) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   258
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   259
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   260
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   261
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   262
     * @see ExtendedContentHandler#addAttribute(java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   263
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   264
    public void addAttribute(String name, String value)
7f561c08de6b Initial load
duke
parents:
diff changeset
   265
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   266
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   267
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   268
7f561c08de6b Initial load
duke
parents:
diff changeset
   269
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   270
     * @see ExtendedContentHandler#characters(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   271
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   272
    public void characters(String chars) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   273
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   274
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   275
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   276
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   277
     * @see ExtendedContentHandler#endElement(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   278
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   279
    public void endElement(String elemName) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   280
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   281
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   282
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   283
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   284
     * @see ExtendedContentHandler#startDocument()
7f561c08de6b Initial load
duke
parents:
diff changeset
   285
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   286
    public void startDocument() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   287
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   288
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   289
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   290
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   291
     * @see ExtendedContentHandler#startElement(java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   292
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   293
    public void startElement(String uri, String localName, String qName)
7f561c08de6b Initial load
duke
parents:
diff changeset
   294
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   295
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   296
        couldThrowSAXException(qName);
7f561c08de6b Initial load
duke
parents:
diff changeset
   297
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   298
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   299
     * @see ExtendedContentHandler#startElement(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   300
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   301
    public void startElement(String qName) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   302
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   303
        couldThrowSAXException(qName);
7f561c08de6b Initial load
duke
parents:
diff changeset
   304
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   305
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   306
     * @see ExtendedContentHandler#namespaceAfterStartElement(java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   307
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   308
    public void namespaceAfterStartElement(String uri, String prefix)
7f561c08de6b Initial load
duke
parents:
diff changeset
   309
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   310
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   311
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   312
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   313
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   314
     * @see ExtendedContentHandler#startPrefixMapping(java.lang.String, java.lang.String, boolean)
7f561c08de6b Initial load
duke
parents:
diff changeset
   315
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   316
    public boolean startPrefixMapping(
7f561c08de6b Initial load
duke
parents:
diff changeset
   317
        String prefix,
7f561c08de6b Initial load
duke
parents:
diff changeset
   318
        String uri,
7f561c08de6b Initial load
duke
parents:
diff changeset
   319
        boolean shouldFlush)
7f561c08de6b Initial load
duke
parents:
diff changeset
   320
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   321
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   322
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   323
        return false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   324
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   325
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   326
     * @see ExtendedContentHandler#entityReference(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   327
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   328
    public void entityReference(String entityName) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   329
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   330
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   331
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   332
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   333
     * @see ExtendedContentHandler#getNamespaceMappings()
7f561c08de6b Initial load
duke
parents:
diff changeset
   334
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   335
    public NamespaceMappings getNamespaceMappings()
7f561c08de6b Initial load
duke
parents:
diff changeset
   336
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   337
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   338
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   339
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   340
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   341
     * @see ExtendedContentHandler#getPrefix(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   342
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   343
    public String getPrefix(String uri)
7f561c08de6b Initial load
duke
parents:
diff changeset
   344
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   345
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   346
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   347
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   348
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   349
     * @see ExtendedContentHandler#getNamespaceURI(java.lang.String, boolean)
7f561c08de6b Initial load
duke
parents:
diff changeset
   350
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   351
    public String getNamespaceURI(String name, boolean isElement)
7f561c08de6b Initial load
duke
parents:
diff changeset
   352
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   353
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   354
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   355
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   356
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   357
     * @see ExtendedContentHandler#getNamespaceURIFromPrefix(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   358
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   359
    public String getNamespaceURIFromPrefix(String prefix)
7f561c08de6b Initial load
duke
parents:
diff changeset
   360
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   361
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   362
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   363
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   364
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   365
     * @see org.xml.sax.ContentHandler#setDocumentLocator(org.xml.sax.Locator)
7f561c08de6b Initial load
duke
parents:
diff changeset
   366
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   367
    public void setDocumentLocator(Locator arg0)
7f561c08de6b Initial load
duke
parents:
diff changeset
   368
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   369
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   370
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   371
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   372
     * @see org.xml.sax.ContentHandler#endDocument()
7f561c08de6b Initial load
duke
parents:
diff changeset
   373
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   374
    public void endDocument() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   375
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   376
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   377
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   378
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   379
     * @see org.xml.sax.ContentHandler#startPrefixMapping(java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   380
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   381
    public void startPrefixMapping(String arg0, String arg1)
7f561c08de6b Initial load
duke
parents:
diff changeset
   382
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   383
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   384
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   385
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   386
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   387
     * @see org.xml.sax.ContentHandler#endPrefixMapping(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   388
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   389
    public void endPrefixMapping(String arg0) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   390
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   391
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   392
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   393
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   394
     * @see org.xml.sax.ContentHandler#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
7f561c08de6b Initial load
duke
parents:
diff changeset
   395
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   396
    public void startElement(
7f561c08de6b Initial load
duke
parents:
diff changeset
   397
        String arg0,
7f561c08de6b Initial load
duke
parents:
diff changeset
   398
        String arg1,
7f561c08de6b Initial load
duke
parents:
diff changeset
   399
        String arg2,
7f561c08de6b Initial load
duke
parents:
diff changeset
   400
        Attributes arg3)
7f561c08de6b Initial load
duke
parents:
diff changeset
   401
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   402
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   403
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   404
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   405
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   406
     * @see org.xml.sax.ContentHandler#endElement(java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   407
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   408
    public void endElement(String arg0, String arg1, String arg2)
7f561c08de6b Initial load
duke
parents:
diff changeset
   409
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   410
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   411
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   412
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   413
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   414
     * @see org.xml.sax.ContentHandler#characters(char[], int, int)
7f561c08de6b Initial load
duke
parents:
diff changeset
   415
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   416
    public void characters(char[] arg0, int arg1, int arg2) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   417
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   418
        couldThrowSAXException(arg0, arg1, arg2);
7f561c08de6b Initial load
duke
parents:
diff changeset
   419
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   420
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   421
     * @see org.xml.sax.ContentHandler#ignorableWhitespace(char[], int, int)
7f561c08de6b Initial load
duke
parents:
diff changeset
   422
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   423
    public void ignorableWhitespace(char[] arg0, int arg1, int arg2)
7f561c08de6b Initial load
duke
parents:
diff changeset
   424
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   425
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   426
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   427
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   428
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   429
     * @see org.xml.sax.ContentHandler#processingInstruction(java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   430
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   431
    public void processingInstruction(String arg0, String arg1)
7f561c08de6b Initial load
duke
parents:
diff changeset
   432
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   433
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   434
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   435
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   436
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   437
     * @see org.xml.sax.ContentHandler#skippedEntity(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   438
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   439
    public void skippedEntity(String arg0) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   440
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   441
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   442
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   443
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   444
     * @see ExtendedLexicalHandler#comment(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   445
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   446
    public void comment(String comment) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   447
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   448
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   449
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   450
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   451
     * @see org.xml.sax.ext.LexicalHandler#startDTD(java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   452
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   453
    public void startDTD(String arg0, String arg1, String arg2)
7f561c08de6b Initial load
duke
parents:
diff changeset
   454
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   455
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   456
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   457
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   458
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   459
     * @see org.xml.sax.ext.LexicalHandler#endDTD()
7f561c08de6b Initial load
duke
parents:
diff changeset
   460
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   461
    public void endDTD() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   462
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   463
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   464
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   465
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   466
     * @see org.xml.sax.ext.LexicalHandler#startEntity(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   467
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   468
    public void startEntity(String arg0) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   469
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   470
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   471
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   472
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   473
     * @see org.xml.sax.ext.LexicalHandler#endEntity(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   474
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   475
    public void endEntity(String arg0) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   476
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   477
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   478
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   479
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   480
     * @see org.xml.sax.ext.LexicalHandler#startCDATA()
7f561c08de6b Initial load
duke
parents:
diff changeset
   481
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   482
    public void startCDATA() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   483
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   484
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   485
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   486
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   487
     * @see org.xml.sax.ext.LexicalHandler#endCDATA()
7f561c08de6b Initial load
duke
parents:
diff changeset
   488
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   489
    public void endCDATA() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   490
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   491
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   492
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   493
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   494
     * @see org.xml.sax.ext.LexicalHandler#comment(char[], int, int)
7f561c08de6b Initial load
duke
parents:
diff changeset
   495
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   496
    public void comment(char[] arg0, int arg1, int arg2) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   497
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   498
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   499
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   500
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   501
     * @see XSLOutputAttributes#getDoctypePublic()
7f561c08de6b Initial load
duke
parents:
diff changeset
   502
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   503
    public String getDoctypePublic()
7f561c08de6b Initial load
duke
parents:
diff changeset
   504
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   505
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   506
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   507
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   508
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   509
     * @see XSLOutputAttributes#getDoctypeSystem()
7f561c08de6b Initial load
duke
parents:
diff changeset
   510
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   511
    public String getDoctypeSystem()
7f561c08de6b Initial load
duke
parents:
diff changeset
   512
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   513
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   514
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   515
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   516
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   517
     * @see XSLOutputAttributes#getEncoding()
7f561c08de6b Initial load
duke
parents:
diff changeset
   518
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   519
    public String getEncoding()
7f561c08de6b Initial load
duke
parents:
diff changeset
   520
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   521
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   522
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   523
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   524
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   525
     * @see XSLOutputAttributes#getIndent()
7f561c08de6b Initial load
duke
parents:
diff changeset
   526
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   527
    public boolean getIndent()
7f561c08de6b Initial load
duke
parents:
diff changeset
   528
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   529
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   530
        return false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   531
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   532
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   533
     * @see XSLOutputAttributes#getIndentAmount()
7f561c08de6b Initial load
duke
parents:
diff changeset
   534
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   535
    public int getIndentAmount()
7f561c08de6b Initial load
duke
parents:
diff changeset
   536
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   537
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   538
        return 0;
7f561c08de6b Initial load
duke
parents:
diff changeset
   539
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   540
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   541
     * @see XSLOutputAttributes#getMediaType()
7f561c08de6b Initial load
duke
parents:
diff changeset
   542
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   543
    public String getMediaType()
7f561c08de6b Initial load
duke
parents:
diff changeset
   544
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   545
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   546
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   547
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   548
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   549
     * @see XSLOutputAttributes#getOmitXMLDeclaration()
7f561c08de6b Initial load
duke
parents:
diff changeset
   550
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   551
    public boolean getOmitXMLDeclaration()
7f561c08de6b Initial load
duke
parents:
diff changeset
   552
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   553
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   554
        return false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   555
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   556
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   557
     * @see XSLOutputAttributes#getStandalone()
7f561c08de6b Initial load
duke
parents:
diff changeset
   558
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   559
    public String getStandalone()
7f561c08de6b Initial load
duke
parents:
diff changeset
   560
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   561
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   562
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   563
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   564
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   565
     * @see XSLOutputAttributes#getVersion()
7f561c08de6b Initial load
duke
parents:
diff changeset
   566
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   567
    public String getVersion()
7f561c08de6b Initial load
duke
parents:
diff changeset
   568
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   569
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   570
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   571
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   572
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   573
     * @see XSLOutputAttributes#setCdataSectionElements
7f561c08de6b Initial load
duke
parents:
diff changeset
   574
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   575
    public void setCdataSectionElements(Hashtable h) throws Exception
7f561c08de6b Initial load
duke
parents:
diff changeset
   576
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   577
        couldThrowException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   578
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   579
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   580
     * @see XSLOutputAttributes#setDoctype(java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   581
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   582
    public void setDoctype(String system, String pub)
7f561c08de6b Initial load
duke
parents:
diff changeset
   583
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   584
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   585
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   586
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   587
     * @see XSLOutputAttributes#setDoctypePublic(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   588
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   589
    public void setDoctypePublic(String doctype)
7f561c08de6b Initial load
duke
parents:
diff changeset
   590
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   591
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   592
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   593
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   594
     * @see XSLOutputAttributes#setDoctypeSystem(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   595
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   596
    public void setDoctypeSystem(String doctype)
7f561c08de6b Initial load
duke
parents:
diff changeset
   597
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   598
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   599
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   600
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   601
     * @see XSLOutputAttributes#setEncoding(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   602
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   603
    public void setEncoding(String encoding)
7f561c08de6b Initial load
duke
parents:
diff changeset
   604
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   605
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   606
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   607
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   608
     * @see XSLOutputAttributes#setMediaType(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   609
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   610
    public void setMediaType(String mediatype)
7f561c08de6b Initial load
duke
parents:
diff changeset
   611
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   612
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   613
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   614
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   615
     * @see XSLOutputAttributes#setOmitXMLDeclaration(boolean)
7f561c08de6b Initial load
duke
parents:
diff changeset
   616
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   617
    public void setOmitXMLDeclaration(boolean b)
7f561c08de6b Initial load
duke
parents:
diff changeset
   618
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   619
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   620
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   621
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   622
     * @see XSLOutputAttributes#setStandalone(java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   623
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   624
    public void setStandalone(String standalone)
7f561c08de6b Initial load
duke
parents:
diff changeset
   625
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   626
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   627
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   628
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   629
     * @see org.xml.sax.ext.DeclHandler#elementDecl(java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   630
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   631
    public void elementDecl(String arg0, String arg1) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   632
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   633
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   634
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   635
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   636
     * @see org.xml.sax.ext.DeclHandler#attributeDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   637
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   638
    public void attributeDecl(
7f561c08de6b Initial load
duke
parents:
diff changeset
   639
        String arg0,
7f561c08de6b Initial load
duke
parents:
diff changeset
   640
        String arg1,
7f561c08de6b Initial load
duke
parents:
diff changeset
   641
        String arg2,
7f561c08de6b Initial load
duke
parents:
diff changeset
   642
        String arg3,
7f561c08de6b Initial load
duke
parents:
diff changeset
   643
        String arg4)
7f561c08de6b Initial load
duke
parents:
diff changeset
   644
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   645
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   646
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   647
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   648
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   649
     * @see org.xml.sax.ext.DeclHandler#internalEntityDecl(java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   650
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   651
    public void internalEntityDecl(String arg0, String arg1)
7f561c08de6b Initial load
duke
parents:
diff changeset
   652
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   653
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   654
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   655
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   656
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   657
     * @see org.xml.sax.ext.DeclHandler#externalEntityDecl(java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   658
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   659
    public void externalEntityDecl(String arg0, String arg1, String arg2)
7f561c08de6b Initial load
duke
parents:
diff changeset
   660
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   661
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   662
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   663
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   664
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   665
     * @see org.xml.sax.ErrorHandler#warning(org.xml.sax.SAXParseException)
7f561c08de6b Initial load
duke
parents:
diff changeset
   666
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   667
    public void warning(SAXParseException arg0) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   668
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   669
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   670
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   671
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   672
     * @see org.xml.sax.ErrorHandler#error(org.xml.sax.SAXParseException)
7f561c08de6b Initial load
duke
parents:
diff changeset
   673
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   674
    public void error(SAXParseException arg0) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   675
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   676
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   677
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   678
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   679
     * @see org.xml.sax.ErrorHandler#fatalError(org.xml.sax.SAXParseException)
7f561c08de6b Initial load
duke
parents:
diff changeset
   680
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   681
    public void fatalError(SAXParseException arg0) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   682
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   683
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   684
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   685
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   686
     * @see Serializer#asDOMSerializer()
7f561c08de6b Initial load
duke
parents:
diff changeset
   687
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   688
    public DOMSerializer asDOMSerializer() throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   689
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   690
        couldThrowIOException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   691
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   692
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   693
7f561c08de6b Initial load
duke
parents:
diff changeset
   694
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   695
     * @see SerializationHandler#setNamespaceMappings(NamespaceMappings)
7f561c08de6b Initial load
duke
parents:
diff changeset
   696
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   697
    public void setNamespaceMappings(NamespaceMappings mappings) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   698
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   699
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   700
7f561c08de6b Initial load
duke
parents:
diff changeset
   701
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   702
     * @see ExtendedContentHandler#setSourceLocator(javax.xml.transform.SourceLocator)
7f561c08de6b Initial load
duke
parents:
diff changeset
   703
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   704
    public void setSourceLocator(SourceLocator locator)
7f561c08de6b Initial load
duke
parents:
diff changeset
   705
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   706
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   707
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   708
7f561c08de6b Initial load
duke
parents:
diff changeset
   709
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   710
     * @see ExtendedContentHandler#addUniqueAttribute(java.lang.String, java.lang.String, int)
7f561c08de6b Initial load
duke
parents:
diff changeset
   711
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   712
    public void addUniqueAttribute(String name, String value, int flags)
7f561c08de6b Initial load
duke
parents:
diff changeset
   713
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   714
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   715
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   716
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   717
7f561c08de6b Initial load
duke
parents:
diff changeset
   718
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   719
     * @see ExtendedContentHandler#characters(org.w3c.dom.Node)
7f561c08de6b Initial load
duke
parents:
diff changeset
   720
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   721
    public void characters(Node node) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   722
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   723
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   724
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   725
7f561c08de6b Initial load
duke
parents:
diff changeset
   726
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   727
     * @see ExtendedContentHandler#addXSLAttribute(java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   728
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   729
    public void addXSLAttribute(String qName, String value, String uri)
7f561c08de6b Initial load
duke
parents:
diff changeset
   730
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   731
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   732
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   733
7f561c08de6b Initial load
duke
parents:
diff changeset
   734
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   735
     * @see ExtendedContentHandler#addAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   736
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   737
    public void addAttribute(String uri, String localName, String rawName, String type, String value) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   738
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   739
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   740
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   741
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   742
     * @see org.xml.sax.DTDHandler#notationDecl(java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   743
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   744
    public void notationDecl(String arg0, String arg1, String arg2) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   745
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   746
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   747
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   748
7f561c08de6b Initial load
duke
parents:
diff changeset
   749
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   750
     * @see org.xml.sax.DTDHandler#unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
   751
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   752
    public void unparsedEntityDecl(
7f561c08de6b Initial load
duke
parents:
diff changeset
   753
        String arg0,
7f561c08de6b Initial load
duke
parents:
diff changeset
   754
        String arg1,
7f561c08de6b Initial load
duke
parents:
diff changeset
   755
        String arg2,
7f561c08de6b Initial load
duke
parents:
diff changeset
   756
        String arg3)
7f561c08de6b Initial load
duke
parents:
diff changeset
   757
        throws SAXException {
7f561c08de6b Initial load
duke
parents:
diff changeset
   758
        couldThrowSAXException();
7f561c08de6b Initial load
duke
parents:
diff changeset
   759
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   760
7f561c08de6b Initial load
duke
parents:
diff changeset
   761
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   762
     * @see SerializationHandler#setDTDEntityExpansion(boolean)
7f561c08de6b Initial load
duke
parents:
diff changeset
   763
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   764
    public void setDTDEntityExpansion(boolean expand) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   765
        aMethodIsCalled();
7f561c08de6b Initial load
duke
parents:
diff changeset
   766
7f561c08de6b Initial load
duke
parents:
diff changeset
   767
    }
24888
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   768
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   769
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   770
    public String getOutputProperty(String name) {
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   771
        aMethodIsCalled();
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   772
        return null;
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   773
    }
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   774
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   775
    public String getOutputPropertyDefault(String name) {
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   776
        aMethodIsCalled();
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   777
        return null;
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   778
    }
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   779
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   780
    public void setOutputProperty(String name, String val) {
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   781
        aMethodIsCalled();
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   782
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   783
    }
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   784
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   785
    public void setOutputPropertyDefault(String name, String val) {
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   786
        aMethodIsCalled();
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   787
2e493ac78624 8041523: Xerces Update: Serializer improvements from Xalan
joehw
parents: 12458
diff changeset
   788
    }
25834
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   789
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   790
    /**
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   791
     * @see org.apache.xml.serializer.Serializer#asDOM3Serializer()
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   792
     */
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   793
    public Object asDOM3Serializer() throws IOException
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   794
    {
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   795
        couldThrowIOException();
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   796
        return null;
aba3efbf4ec5 8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.
joehw
parents: 24888
diff changeset
   797
    }
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   798
}