langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/BuilderFactory.java
author ohair
Tue, 28 Dec 2010 15:54:52 -0800
changeset 7681 1f0819a3341f
parent 5520 86e4b9a9da40
child 14258 8d2148961366
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     2
 * Copyright (c) 2003, 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.builders;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import com.sun.tools.doclets.internal.toolkit.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import com.sun.tools.doclets.internal.toolkit.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import com.sun.javadoc.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 * The factory for constructing builders.
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 * This code is not part of an API.
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * It is implementation that is subject to change.
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * Do not use it as an API
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
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
public class BuilderFactory {
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
     * The current configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    private Configuration configuration;
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
     * The factory to retrieve the required writers from.
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    private WriterFactory writerFactory;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
     * Construct a builder factory using the given configuration.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     * @param configuration the configuration for the current doclet
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     * being executed.
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
    public BuilderFactory (Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        this.configuration = configuration;
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        this.writerFactory = configuration.getWriterFactory();
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     * Return the builder that builds the constant summary.
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     * @return the builder that builds the constant summary.
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    public AbstractBuilder getConstantsSummaryBuider() throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        return ConstantsSummaryBuilder.getInstance(configuration,
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
            writerFactory.getConstantsSummaryWriter());
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     * Return the builder that builds the package summary.
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
     * @param pkg the package being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     * @param prevPkg the previous package being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     * @param nextPkg the next package being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     * @return the builder that builds the constant summary.
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    public AbstractBuilder getPackageSummaryBuilder(PackageDoc pkg, PackageDoc prevPkg,
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
            PackageDoc nextPkg) throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
        return PackageSummaryBuilder.getInstance(configuration, pkg,
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
            writerFactory.getPackageSummaryWriter(pkg, prevPkg, nextPkg));
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     * Return the builder for the class.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     * @param classDoc the class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
     * @param prevClass the previous class that was documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     * @param nextClass the next class being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     * @param classTree the class tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     * @return the writer for the class.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    public AbstractBuilder getClassBuilder(ClassDoc classDoc,
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        ClassDoc prevClass, ClassDoc nextClass, ClassTree classTree)
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        return ClassBuilder.getInstance(configuration, classDoc,
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
            writerFactory.getClassWriter(classDoc, prevClass, nextClass,
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
                classTree));
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     * Return the builder for the annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     * @param annotationType the annotation type being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
     * @param prevType the previous type that was documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     * @param nextType the next type being documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     * @return the writer for the annotation type.  Return null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * writer is not supported by the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    public AbstractBuilder getAnnotationTypeBuilder(
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
        AnnotationTypeDoc annotationType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        Type prevType, Type nextType)
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        return AnnotationTypeBuilder.getInstance(configuration, annotationType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
            writerFactory.getAnnotationTypeWriter(annotationType, prevType,
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
            nextType));
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     * Return an instance of the method builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     * @return an instance of the method builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    public AbstractBuilder getMethodBuilder(ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
           throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        return MethodBuilder.getInstance(configuration,
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
            classWriter.getClassDoc(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
            writerFactory.getMethodWriter(classWriter));
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     * Return an instance of the annotation type member builder for the given
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
     * class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     * @return an instance of the annotation type memebr builder for the given
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
     *         annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    public AbstractBuilder getAnnotationTypeOptionalMemberBuilder(
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
            AnnotationTypeWriter annotationTypeWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
        return AnnotationTypeOptionalMemberBuilder.getInstance(configuration,
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
            annotationTypeWriter.getAnnotationTypeDoc(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
            writerFactory.getAnnotationTypeOptionalMemberWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
                annotationTypeWriter));
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    }
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 an instance of the annotation type member builder for the given
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
     * class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
     * @return an instance of the annotation type memebr builder for the given
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
     *         annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    public AbstractBuilder getAnnotationTypeRequiredMemberBuilder(
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
            AnnotationTypeWriter annotationTypeWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
        return AnnotationTypeRequiredMemberBuilder.getInstance(configuration,
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
            annotationTypeWriter.getAnnotationTypeDoc(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            writerFactory.getAnnotationTypeRequiredMemberWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
                annotationTypeWriter));
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     * Return an instance of the enum constants builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     * @return an instance of the enum constants builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
    public AbstractBuilder getEnumConstantsBuilder(ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        return EnumConstantBuilder.getInstance(configuration, classWriter.getClassDoc(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            writerFactory.getEnumConstantWriter(classWriter));
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
     * Return an instance of the field builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
     * @return an instance of the field builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
    public AbstractBuilder getFieldBuilder(ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
        return FieldBuilder.getInstance(configuration, classWriter.getClassDoc(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
            writerFactory.getFieldWriter(classWriter));
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     * Return an instance of the constructor builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     * @return an instance of the constructor builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    public AbstractBuilder getConstructorBuilder(ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        return ConstructorBuilder.getInstance(configuration,
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            classWriter.getClassDoc(), writerFactory.getConstructorWriter(
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
            classWriter));
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * Return an instance of the member summary builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     * @return an instance of the member summary builder for the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    public AbstractBuilder getMemberSummaryBuilder(ClassWriter classWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        return MemberSummaryBuilder.getInstance(classWriter, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     * Return an instance of the member summary builder for the given annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     * type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
     * @return an instance of the member summary builder for the given
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
     *         annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
    public AbstractBuilder getMemberSummaryBuilder(
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            AnnotationTypeWriter annotationTypeWriter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
    throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
        return MemberSummaryBuilder.getInstance(annotationTypeWriter,
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     * Return the builder that builds the serialized form.
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     * @return the builder that builds the serialized form.
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    public AbstractBuilder getSerializedFormBuilder()
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        return SerializedFormBuilder.getInstance(configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
}