src/java.management/share/classes/javax/management/loading/MLetContent.java
author darcy
Wed, 23 Oct 2019 13:01:40 -0700
changeset 58766 54ffb15c4839
parent 47216 71c04702a3d5
permissions -rw-r--r--
8232442: Suppress warnings on non-serializable non-transient instance fields in java.management.* Reviewed-by: rriggs, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 1999, 2006, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.management.loading;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
// java import
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.MalformedURLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.Collections;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * This class represents the contents of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * It can be consulted by a subclass of {@link MLet} that overrides
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * the {@link MLet#check MLet.check} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
public class MLetContent {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
     * A map of the attributes of the <CODE>MLET</CODE> tag
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * and their values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private Map<String,String> attributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * An ordered list of the TYPE attributes that appeared in nested
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * &lt;PARAM&gt; tags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private List<String> types;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * An ordered list of the VALUE attributes that appeared in nested
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * &lt;PARAM&gt; tags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    private List<String> values;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * The MLet text file's base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private URL documentURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * The base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    private URL baseURL;
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 <CODE>MLet</CODE> instance initialized with attributes read
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * from an <CODE>MLET</CODE> tag in an MLet text file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * @param url The URL of the MLet text file containing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @param attributes A map of the attributes of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * The keys in this map are the attribute names in lowercase, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * example <code>codebase</code>.  The values are the associated attribute
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @param types A list of the TYPE attributes that appeared in nested
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * &lt;PARAM&gt; tags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @param values A list of the VALUE attributes that appeared in nested
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * &lt;PARAM&gt; tags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    public MLetContent(URL url, Map<String,String> attributes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                       List<String> types, List<String> values) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        this.documentURL = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        this.attributes = Collections.unmodifiableMap(attributes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        this.types = Collections.unmodifiableList(types);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        this.values = Collections.unmodifiableList(values);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        // Initialize baseURL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        String att = getParameter("codebase");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        if (att != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            if (!att.endsWith("/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                att += "/";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                baseURL = new URL(documentURL, att);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            } catch (MalformedURLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                // OK : Move to next block as baseURL could not be initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        if (baseURL == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            String file = documentURL.getFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            int i = file.lastIndexOf('/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            if (i >= 0 && i < file.length() - 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                    baseURL = new URL(documentURL, file.substring(0, i + 1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                } catch (MalformedURLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                    // OK : Move to next block as baseURL could not be initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        if (baseURL == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            baseURL = documentURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    // GETTERS AND SETTERS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    //--------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * Gets the attributes of the <CODE>MLET</CODE> tag.  The keys in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * the returned map are the attribute names in lowercase, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * example <code>codebase</code>.  The values are the associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * attribute values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @return A map of the attributes of the <CODE>MLET</CODE> tag
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * and their values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    public Map<String,String> getAttributes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        return attributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * Gets the MLet text file's base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * @return The MLet text file's base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public URL getDocumentBase() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        return documentURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Gets the code base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @return The code base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    public URL getCodeBase() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        return baseURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * Gets the list of <CODE>.jar</CODE> files specified by the <CODE>ARCHIVE</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @return A comma-separated list of <CODE>.jar</CODE> file names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public String getJarFiles() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        return getParameter("archive");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Gets the value of the <CODE>CODE</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @return The value of the <CODE>CODE</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    public String getCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        return getParameter("code");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * Gets the value of the <CODE>OBJECT</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @return The value of the <CODE>OBJECT</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    public String getSerializedObject() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        return getParameter("object");
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
     * Gets the value of the <CODE>NAME</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @return The value of the <CODE>NAME</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        return getParameter("name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * Gets the value of the <CODE>VERSION</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @return The value of the <CODE>VERSION</CODE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public String getVersion() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        return getParameter("version");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * Gets the list of values of the <code>TYPE</code> attribute in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * each nested &lt;PARAM&gt; tag within the <code>MLET</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @return the list of types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    public List<String> getParameterTypes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        return types;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * Gets the list of values of the <code>VALUE</code> attribute in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * each nested &lt;PARAM&gt; tag within the <code>MLET</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @return the list of values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    public List<String> getParameterValues() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        return values;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * Gets the value of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @param name A string representing the name of the attribute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @return The value of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * attribute of the <CODE>MLET</CODE> tag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    private String getParameter(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        return attributes.get(name.toLowerCase());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
}