langtools/src/share/classes/com/sun/tools/javac/util/Bits.java
author jjg
Thu, 13 Sep 2012 14:29:36 -0700
changeset 13844 56339cf983a3
parent 8032 e1aa25ccdabb
child 14049 3207422a0f9b
permissions -rw-r--r--
7177970: fix issues in langtools doc comments Reviewed-by: mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 8032
diff changeset
     2
 * Copyright (c) 1999, 2012, 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.javac.util;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
/** A class for extensible, mutable bit sets.
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    30
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    31
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
public class Bits {
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
    private final static int wordlen = 32;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
    private final static int wordshift = 5;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
    private final static int wordmask = wordlen - 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
    private int[] bits;
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
    /** Construct an initially empty set.
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    public Bits() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
        this(new int[1]);
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    /** Construct a set consisting initially of given bit vector.
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    public Bits(int[] bits) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        this.bits = bits;
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 set consisting initially of given range.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    public Bits(int start, int limit) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
        this();
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        inclRange(start, limit);
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    private void sizeTo(int len) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        if (bits.length < len) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
            int[] newbits = new int[len];
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            System.arraycopy(bits, 0, newbits, 0, bits.length);
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
            bits = newbits;
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    /** This set = {}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    public void clear() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        for (int i = 0; i < bits.length; i++) bits[i] = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    /** Return a copy of this set.
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    public Bits dup() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        int[] newbits = new int[bits.length];
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        System.arraycopy(bits, 0, newbits, 0, bits.length);
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        return new Bits(newbits);
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    /** Include x in this set.
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
    public void incl(int x) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7681
diff changeset
    88
        Assert.check(x >= 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        sizeTo((x >>> wordshift) + 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        bits[x >>> wordshift] = bits[x >>> wordshift] |
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            (1 << (x & wordmask));
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    /** Include [start..limit) in this set.
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    public void inclRange(int start, int limit) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        sizeTo((limit >>> wordshift) + 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        for (int x = start; x < limit; x++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            bits[x >>> wordshift] = bits[x >>> wordshift] |
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
                (1 << (x & wordmask));
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
7621
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   104
    /** Exclude [start...end] from this set.
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   105
     */
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   106
    public void excludeFrom(int start) {
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   107
        Bits temp = new Bits();
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   108
        temp.sizeTo(bits.length);
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   109
        temp.inclRange(0, start);
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   110
        andSet(temp);
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   111
    }
9f2901d1f92f 7003744: Compiler error concerning final variables
mcimadamore
parents: 5847
diff changeset
   112
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    /** Exclude x from this set.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    public void excl(int x) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7681
diff changeset
   116
        Assert.check(x >= 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        sizeTo((x >>> wordshift) + 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        bits[x >>> wordshift] = bits[x >>> wordshift] &
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            ~(1 << (x & wordmask));
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    /** Is x an element of this set?
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    public boolean isMember(int x) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
            0 <= x && x < (bits.length << wordshift) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
            (bits[x >>> wordshift] & (1 << (x & wordmask))) != 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 8032
diff changeset
   130
    /** {@literal this set = this set & xs}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    public Bits andSet(Bits xs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        sizeTo(xs.bits.length);
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
        for (int i = 0; i < xs.bits.length; i++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
            bits[i] = bits[i] & xs.bits[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    /** this set = this set | xs.
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    public Bits orSet(Bits xs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
        sizeTo(xs.bits.length);
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        for (int i = 0; i < xs.bits.length; i++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
            bits[i] = bits[i] | xs.bits[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    /** this set = this set \ xs.
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    public Bits diffSet(Bits xs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        for (int i = 0; i < bits.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
            if (i < xs.bits.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
                bits[i] = bits[i] & ~xs.bits[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    /** this set = this set ^ xs.
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    public Bits xorSet(Bits xs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
        sizeTo(xs.bits.length);
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
        for (int i = 0; i < xs.bits.length; i++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            bits[i] = bits[i] ^ xs.bits[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
        return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    /** Count trailing zero bits in an int. Algorithm from "Hacker's
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     *  Delight" by Henry S. Warren Jr. (figure 5-13)
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    private static int trailingZeroBits(int x) {
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 7681
diff changeset
   172
        Assert.check(wordlen == 32);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        if (x == 0) return 32;
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        int n = 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        if ((x & 0xffff) == 0) { n += 16; x >>>= 16; }
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
        if ((x & 0x00ff) == 0) { n +=  8; x >>>=  8; }
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
        if ((x & 0x000f) == 0) { n +=  4; x >>>=  4; }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        if ((x & 0x0003) == 0) { n +=  2; x >>>=  2; }
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        return n - (x&1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 8032
diff changeset
   182
    /** Return the index of the least bit position &ge; x that is set.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     *  If none are set, returns -1.  This provides a nice way to iterate
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     *  over the members of a bit set:
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 8032
diff changeset
   185
     *  <pre>{@code
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
     *  for (int i = bits.nextBit(0); i>=0; i = bits.nextBit(i+1)) ...
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 8032
diff changeset
   187
     *  }</pre>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    public int nextBit(int x) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
        int windex = x >>> wordshift;
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        if (windex >= bits.length) return -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        int word = bits[windex] & ~((1 << (x & wordmask))-1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        while (true) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
            if (word != 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
                return (windex << wordshift) + trailingZeroBits(word);
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
            windex++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
            if (windex >= bits.length) return -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            word = bits[windex];
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    /** a string representation of this set.
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
    public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
        char[] digits = new char[bits.length * wordlen];
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        for (int i = 0; i < bits.length * wordlen; i++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            digits[i] = isMember(i) ? '1' : '0';
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        return new String(digits);
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    /** Test Bits.nextBit(int). */
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
    public static void main(String[] args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        java.util.Random r = new java.util.Random();
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        Bits bits = new Bits();
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
        int dupCount = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        for (int i=0; i<125; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
            int k;
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            do {
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
                k = r.nextInt(250);
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            } while (bits.isMember(k));
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
            System.out.println("adding " + k);
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            bits.incl(k);
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
        int count = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
        for (int i = bits.nextBit(0); i >= 0; i = bits.nextBit(i+1)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
            System.out.println("found " + i);
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
            count ++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
        if (count != 125) throw new Error();
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
}