langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/WriterFactory.java
author jjg
Fri, 27 May 2016 13:06:58 -0700
changeset 38617 d93a7f64e231
parent 36526 3b41f1c69604
permissions -rw-r--r--
8157606: deprecate com.sun.javadoc API Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 25874
diff changeset
     2
 * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.doclets.internal.toolkit;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    28
import com.sun.javadoc.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import com.sun.tools.doclets.internal.toolkit.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * The interface for a factory creates writers.
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    34
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    35
 *  If you write code that depends on this, you do so at your own risk.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    36
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    37
 *  deletion without notice.</b>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * @author Jamie Ho
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * @since 1.4
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
38617
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 36526
diff changeset
    43
@Deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
public interface WriterFactory {
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
     * Return the writer for the constant summary.
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
     * @return the writer for the constant summary.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    public abstract ConstantsSummaryWriter getConstantsSummaryWriter()
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
     * Return the writer for the package summary.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     * @param packageDoc the package being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     * @param prevPkg the previous package that was documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     * @param nextPkg the next package being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
     * @return the writer for the package summary.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    public abstract PackageSummaryWriter getPackageSummaryWriter(PackageDoc
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        packageDoc, PackageDoc prevPkg, PackageDoc nextPkg)
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
     * Return the writer for a class.
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     * @param classDoc the class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     * @param prevClass the previous class that was documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
     * @param nextClass the next class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     * @param classTree the class tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     * @return the writer for the class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    public abstract ClassWriter getClassWriter(ClassDoc classDoc,
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        ClassDoc prevClass, ClassDoc nextClass, ClassTree classTree)
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
            throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * Return the writer for an annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * @param annotationType the type being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     * @param prevType the previous type that was documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     * @param nextType the next type being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     * @return the writer for the annotation type.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    public abstract AnnotationTypeWriter getAnnotationTypeWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        AnnotationTypeDoc annotationType, Type prevType, Type nextType)
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     * Return the method writer for a given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * @param classWriter the writer for the class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     * @return the method writer for the give class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    public abstract MethodWriter getMethodWriter(ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
            throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    /**
20237
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   106
     * Return the annotation type field writer for a given annotation type.
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   107
     *
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   108
     * @param annotationTypeWriter the writer for the annotation type
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   109
     *        being documented.
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   110
     * @return the member writer for the given annotation type.  Return null if
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   111
     *         this writer is not supported by the doclet.
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   112
     */
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   113
    public abstract AnnotationTypeFieldWriter
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   114
            getAnnotationTypeFieldWriter(
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   115
        AnnotationTypeWriter annotationTypeWriter) throws Exception;
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   116
b6d89903c867 8015249: javadoc fails to document static final fields in annotation types
bpatel
parents: 16319
diff changeset
   117
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
     * Return the annotation type optional member writer for a given annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     * type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     * @param annotationTypeWriter the writer for the annotation type
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     *        being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     * @return the member writer for the given annotation type.  Return null if
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     *         this writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    public abstract AnnotationTypeOptionalMemberWriter
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
            getAnnotationTypeOptionalMemberWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        AnnotationTypeWriter annotationTypeWriter) throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
     * Return the annotation type required member writer for a given annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     * @param annotationTypeWriter the writer for the annotation type
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
     *        being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * @return the member writer for the given annotation type.  Return null if
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     *         this writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    public abstract AnnotationTypeRequiredMemberWriter
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
            getAnnotationTypeRequiredMemberWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
        AnnotationTypeWriter annotationTypeWriter) throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
     * Return the enum constant writer for a given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
     * @param classWriter the writer for the class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     * @return the enum constant writer for the give class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
    public abstract EnumConstantWriter getEnumConstantWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        ClassWriter classWriter) throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     * Return the field writer for a given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
     * @param classWriter the writer for the class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
     * @return the field writer for the give class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    public abstract FieldWriter getFieldWriter(ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
            throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    /**
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   163
     * Return the property writer for a given class.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   164
     *
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   165
     * @param classWriter the writer for the class being documented.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   166
     * @return the property writer for the give class.  Return null if this
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   167
     * writer is not supported by the doclet.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   168
     */
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   169
    public abstract PropertyWriter getPropertyWriter(ClassWriter classWriter)
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   170
            throws Exception;
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   171
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15723
diff changeset
   172
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     * Return the constructor writer for a given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
     * @param classWriter the writer for the class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
     * @return the method writer for the give class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    public abstract ConstructorWriter getConstructorWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
        ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     * Return the specified member summary writer for a given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
     * @param classWriter the writer for the class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
     * @param memberType  the {@link VisibleMemberMap} member type indicating
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
     *                    the type of member summary that should be returned.
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
     * @return the summary writer for the give class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     * @see VisibleMemberMap
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     * @throws IllegalArgumentException if memberType is unknown.
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    public abstract MemberSummaryWriter getMemberSummaryWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        ClassWriter classWriter, int memberType)
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
     * Return the specified member summary writer for a given annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
     * @param annotationTypeWriter the writer for the annotation type being
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     *                             documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     * @param memberType  the {@link VisibleMemberMap} member type indicating
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     *                    the type of member summary that should be returned.
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     * @return the summary writer for the give class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     * @see VisibleMemberMap
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
     * @throws IllegalArgumentException if memberType is unknown.
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    public abstract MemberSummaryWriter getMemberSummaryWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        AnnotationTypeWriter annotationTypeWriter, int memberType)
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
    throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
     * Return the writer for the serialized form.
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     * @return the writer for the serialized form.
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
    public SerializedFormWriter getSerializedFormWriter() throws Exception;
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
}