jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthEditorPaneUI.java
author alexsch
Wed, 18 Nov 2015 19:13:42 +0400
changeset 34407 2b40f400a30b
parent 25859 3317bb8137f4
child 37698 4d798c873df0
permissions -rw-r--r--
8081411: Add an API for painting an icon with a SynthContext Reviewed-by: serb, azvegint
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 20168
diff changeset
     2
 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.swing.plaf.synth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.swing.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import javax.swing.text.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.swing.plaf.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.swing.plaf.basic.BasicEditorPaneUI;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.beans.PropertyChangeEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
    36
 * Provides the Synth L&F UI delegate for
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    37
 * {@link javax.swing.JEditorPane}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * @author  Shannon Hickey
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    40
 * @since 1.7
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    42
public class SynthEditorPaneUI extends BasicEditorPaneUI implements SynthUI {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private SynthStyle style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     * I would prefer to use UIResource instad of this.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * Unfortunately Boolean is a final class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     */
1290
da8902cd496c 6727661: Code improvement and warnings removing from the swing/plaf packages
rupashka
parents: 2
diff changeset
    48
    private Boolean localTrue = Boolean.TRUE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    /**
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    51
     * Creates a new UI object for the given component.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     *
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    53
     * @param c component to create UI object for
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    54
     * @return the UI object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    public static ComponentUI createUI(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        return new SynthEditorPaneUI();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    60
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
    61
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    62
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    63
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    protected void installDefaults() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        // Installs the text cursor on the component
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        super.installDefaults();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        JComponent c = getComponent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        Object clientProperty =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            c.getClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES);
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    70
        if (clientProperty == null) {
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    71
            c.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, localTrue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        }
1290
da8902cd496c 6727661: Code improvement and warnings removing from the swing/plaf packages
rupashka
parents: 2
diff changeset
    73
        updateStyle(getComponent());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    76
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
    77
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    78
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    79
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    protected void uninstallDefaults() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        SynthContext context = getContext(getComponent(), ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        JComponent c = getComponent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        c.putClientProperty("caretAspectRatio", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        style.uninstallDefaults(context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        style = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        Object clientProperty =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            c.getClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        if (clientProperty == localTrue) {
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
    92
            c.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                                             Boolean.FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        super.uninstallDefaults();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * This method gets called when a bound property is changed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * on the associated JTextComponent.  This is a hook
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * which UI implementations may change to reflect how the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * UI displays bound properties of JTextComponent subclasses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * This is implemented to rebuild the ActionMap based upon an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * EditorKit change.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @param evt the property change event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     */
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   108
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    protected void propertyChange(PropertyChangeEvent evt) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        if (SynthLookAndFeel.shouldUpdateStyle(evt)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            updateStyle((JTextComponent)evt.getSource());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        super.propertyChange(evt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    private void updateStyle(JTextComponent comp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        SynthContext context = getContext(comp, ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        SynthStyle oldStyle = style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        style = SynthLookAndFeel.updateStyle(context, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        if (style != oldStyle) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            SynthTextFieldUI.updateStyle(comp, context, getPropertyPrefix());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            if (oldStyle != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                uninstallKeyboardActions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                installKeyboardActions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   133
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   134
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   135
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   136
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    public SynthContext getContext(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        return getContext(c, getComponentState(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    private SynthContext getContext(JComponent c, int state) {
25100
d527cc827d7d 8043627: NPE in SynthContext in plugin mode
malenkov
parents: 23010
diff changeset
   142
        return SynthContext.getContext(c, style, state);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    private int getComponentState(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        return SynthLookAndFeel.getComponentState(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   149
    /**
4848
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   150
     * Notifies this UI delegate to repaint the specified component.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   151
     * This method paints the component background, then calls
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   152
     * the {@link #paint(SynthContext,Graphics)} method.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   153
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   154
     * <p>In general, this method does not need to be overridden by subclasses.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   155
     * All Look and Feel rendering code should reside in the {@code paint} method.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   156
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   157
     * @param g the {@code Graphics} object used for painting
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   158
     * @param c the component being painted
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   159
     * @see #paint(SynthContext,Graphics)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   160
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   161
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public void update(Graphics g, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        SynthContext context = getContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        SynthLookAndFeel.update(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        paintBackground(context, g, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        paint(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   171
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   172
     * Paints the specified component.
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   173
     *
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   174
     * @param context context for the component being painted
4848
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   175
     * @param g the {@code Graphics} object used for painting
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   176
     * @see #update(Graphics,JComponent)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   177
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    protected void paint(SynthContext context, Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        super.paint(g, getComponent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   182
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   183
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   184
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   185
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    protected void paintBackground(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        // Overriden to do nothing, all our painting is done from update/paint.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    void paintBackground(SynthContext context, Graphics g, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        context.getPainter().paintEditorPaneBackground(context, g, 0, 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                                                  c.getWidth(), c.getHeight());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   195
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   196
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   197
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1639
diff changeset
   198
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    public void paintBorder(SynthContext context, Graphics g, int x,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
                            int y, int w, int h) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        context.getPainter().paintEditorPaneBorder(context, g, x, y, w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
}