jdk/src/share/classes/javax/swing/border/EtchedBorder.java
author prr
Fri, 23 May 2014 09:05:24 -0700
changeset 24567 a0ebe5fd56ff
parent 24500 399b77799d66
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
22574
7f8ce0c8c20a 8032627: Add @SuppressWarnings("serial") to appropriate javax.swing classes
darcy
parents: 20458
diff changeset
     2
 * Copyright (c) 1997, 2014, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package javax.swing.border;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.Graphics;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.Insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.Color;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.Component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.beans.ConstructorProperties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * A class which implements a simple etched border which can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * either be etched-in or etched-out.  If no highlight/shadow
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * colors are initialized when the border is created, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * these colors will be dynamically derived from the background
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * color of the component argument passed into the paintBorder()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <strong>Warning:</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Serialized objects of this class will not be compatible with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * future Swing releases. The current serialization support is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * appropriate for short term storage or RMI between applications running
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * the same version of Swing.  As of 1.4, support for long term storage
20458
f2423fb3fd19 8025840: Fix all the doclint warnings about trademark
cl
parents: 5506
diff changeset
    47
 * of all JavaBeans&trade;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * has been added to the <code>java.beans</code> package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * Please see {@link java.beans.XMLEncoder}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * @author David Kloba
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @author Amy Fowler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 */
22574
7f8ce0c8c20a 8032627: Add @SuppressWarnings("serial") to appropriate javax.swing classes
darcy
parents: 20458
diff changeset
    54
@SuppressWarnings("serial") // Same-version serialization only
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
public class EtchedBorder extends AbstractBorder
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /** Raised etched type. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    public static final int RAISED  = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /** Lowered etched type. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    public static final int LOWERED = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    protected int etchType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    protected Color highlight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    protected Color shadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * Creates a lowered etched border whose colors will be derived
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * from the background color of the component passed into
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * the paintBorder method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public EtchedBorder()    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        this(LOWERED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * Creates an etched border with the specified etch-type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * whose colors will be derived
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * from the background color of the component passed into
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * the paintBorder method.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
    80
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @param etchType the type of etch to be drawn by the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public EtchedBorder(int etchType)    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        this(etchType, null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * Creates a lowered etched border with the specified highlight and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * shadow colors.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
    90
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @param highlight the color to use for the etched highlight
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * @param shadow the color to use for the etched shadow
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    public EtchedBorder(Color highlight, Color shadow)    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        this(LOWERED, highlight, shadow);
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
     * Creates an etched border with the specified etch-type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * highlight and shadow colors.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   101
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * @param etchType the type of etch to be drawn by the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @param highlight the color to use for the etched highlight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @param shadow the color to use for the etched shadow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    @ConstructorProperties({"etchType", "highlightColor", "shadowColor"})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public EtchedBorder(int etchType, Color highlight, Color shadow)    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        this.etchType = etchType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        this.highlight = highlight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        this.shadow = shadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * Paints the border for the specified component with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * specified position and size.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   116
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @param c the component for which this border is being painted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @param g the paint graphics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param x the x position of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param y the y position of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @param width the width of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @param height the height of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        int w = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        int h = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        g.translate(x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        g.setColor(etchType == LOWERED? getShadowColor(c) : getHighlightColor(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        g.drawRect(0, 0, w-2, h-2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        g.setColor(etchType == LOWERED? getHighlightColor(c) : getShadowColor(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        g.drawLine(1, h-3, 1, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        g.drawLine(1, 1, w-3, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        g.drawLine(0, h-1, w-1, h-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        g.drawLine(w-1, h-1, w-1, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        g.translate(-x, -y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Reinitialize the insets parameter with this Border's current Insets.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   145
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param c the component for which this border insets value applies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @param insets the object to be reinitialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    public Insets getBorderInsets(Component c, Insets insets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        insets.set(2, 2, 2, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        return insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * Returns whether or not the border is opaque.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   156
     * This implementation returns true.
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   157
     *
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   158
     * @return true
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    public boolean isBorderOpaque() { return true; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * Returns which etch-type is set on the etched border.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   164
     *
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   165
     * @return the etched border type, either {@code RAISED} or {@code LOWERED}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public int getEtchType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        return etchType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Returns the highlight color of the etched border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * when rendered on the specified component.  If no highlight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * color was specified at instantiation, the highlight color
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * is derived from the specified component's background color.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   176
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @param c the component for which the highlight may be derived
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   178
     * @return the highlight {@code Color} of this {@code EtchedBorder}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    public Color getHighlightColor(Component c)   {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        return highlight != null? highlight :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                                       c.getBackground().brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * Returns the highlight color of the etched border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * Will return null if no highlight color was specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * at instantiation.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   190
     *
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   191
     * @return the highlight {@code Color} of this {@code EtchedBorder} or null
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   192
     *         if none was specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    public Color getHighlightColor()   {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        return highlight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Returns the shadow color of the etched border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * when rendered on the specified component.  If no shadow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * color was specified at instantiation, the shadow color
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * is derived from the specified component's background color.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   204
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @param c the component for which the shadow may be derived
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   206
     * @return the shadow {@code Color} of this {@code EtchedBorder}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    public Color getShadowColor(Component c)   {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        return shadow != null? shadow : c.getBackground().darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * Returns the shadow color of the etched border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * Will return null if no shadow color was specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * at instantiation.
24500
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   217
     *
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   218
     * @return the shadow {@code Color} of this {@code EtchedBorder} or null
399b77799d66 8040893: Add block tags for @return and @param to swing border classes
yan
parents: 22574
diff changeset
   219
     *         if none was specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    public Color getShadowColor()   {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        return shadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
}