jdk/src/jdk.jdi/share/classes/com/sun/jdi/Value.java
author avstepan
Fri, 24 Apr 2015 20:51:41 +0400
changeset 30037 3e785fad2c3b
parent 25859 3317bb8137f4
child 34894 3248b89d1921
permissions -rw-r--r--
8078622: remove tidy warnings from JPDA docs Summary: minor HTML markup fix Reviewed-by: lancea
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: 20742
diff changeset
     2
 * Copyright (c) 1998, 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: 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 com.sun.jdi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * The mirror for a value in the target VM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * This interface is the root of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * value hierarchy encompassing primitive values and object values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * Some examples of where values may be accessed:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <BLOCKQUOTE><TABLE SUMMARY="layout">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *   <TD>{@link ObjectReference#getValue(com.sun.jdi.Field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *                 ObjectReference.getValue(Field)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *   <TD>- value of a field
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *   <TD>{@link StackFrame#getValue(com.sun.jdi.LocalVariable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *                 StackFrame.getValue(LocalVariable)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *   <TD>- value of a variable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *   <TD>{@link VirtualMachine#mirrorOf(double)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *                 VirtualMachine.mirrorOf(double)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *   <TD>- created in the target VM by the JDI client
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *   <TD>{@link com.sun.jdi.event.ModificationWatchpointEvent#valueToBe()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *                 ModificationWatchpointEvent.valueToBe()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *   <TD>- returned with an event
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * </TABLE></BLOCKQUOTE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * The following table illustrates which subinterfaces of Value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * are used to mirror values in the target VM --
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <TABLE BORDER=1 SUMMARY="Maps each kind of value to a mirrored
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *  instance of a subinterface of Value">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <TR BGCOLOR="#EEEEFF">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *   <TH id="primval" colspan=4>Subinterfaces of {@link PrimitiveValue}</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <TR BGCOLOR="#EEEEFF">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *   <TH id="kind"     align="left">Kind of value</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *   <TH id="example"  align="left">For example -<br>expression in target</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *   <TH id="mirrored" align="left">Is mirrored as an<br>instance of</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *   <TH id="type"     align="left">{@link Type} of value<br>{@link #type() Value.type()}</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *   <TD headers="primval kind">     a boolean</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
    66
 *   <TD headers="primval example">  {@code true}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *   <TD headers="primval mirrored"> {@link BooleanValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *   <TD headers="primval type">     {@link BooleanType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *   <TD headers="primval kind">     a byte</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
    71
 *   <TD headers="primval example">  {@code (byte)4}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *   <TD headers="primval mirrored"> {@link ByteValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *   <TD headers="primval type">     {@link ByteType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *   <TD headers="primval kind">     a char</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
    76
 *   <TD headers="primval example">  {@code 'a'}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *   <TD headers="primval mirrored"> {@link CharValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *   <TD headers="primval type">     {@link CharType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *   <TD headers="primval kind">     a double</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
    81
 *   <TD headers="primval example">  {@code 3.1415926}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *   <TD headers="primval mirrored"> {@link DoubleValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *   <TD headers="primval type">     {@link DoubleType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *   <TD headers="primval kind">     a float</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
    86
 *   <TD headers="primval example">  {@code 2.5f}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *   <TD headers="primval mirrored"> {@link FloatValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *   <TD headers="primval type">     {@link FloatType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *   <TD headers="primval kind">     an int</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
    91
 *   <TD headers="primval example">  {@code 22}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *   <TD headers="primval mirrored"> {@link IntegerValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *   <TD headers="primval type">     {@link IntegerType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *   <TD headers="primval kind">     a long</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
    96
 *   <TD headers="primval example">  {@code 1024L}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *   <TD headers="primval mirrored"> {@link LongValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *   <TD headers="primval type">     {@link LongType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 *   <TD headers="primval kind">     a short</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   101
 *   <TD headers="primval example">  {@code (short)12}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *   <TD headers="primval mirrored"> {@link ShortValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *   <TD headers="primval type">     {@link ShortType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 *   <TD headers="primval kind">     a void</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   106
 *   <TD headers="primval example">  </TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 *   <TD headers="primval mirrored"> {@link VoidValue}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *   <TD headers="primval type">     {@link VoidType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * <TR BGCOLOR="#EEEEFF">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *   <TH id="objref" colspan=4>Subinterfaces of {@link ObjectReference}</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <TR BGCOLOR="#EEEEFF">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *   <TH id="kind2"     align="left">Kind of value</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *   <TH id="example2"  align="left">For example -<br>expression in target</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *   <TH id="mirrored2" align="left">Is mirrored as an<br>instance of</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *   <TH id="type2"     align="left">{@link Type} of value<br>{@link #type() Value.type()}</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 *   <TD headers="objref kind2">     a class instance</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   118
 *   <TD headers="objref example2">  {@code this}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *   <TD headers="objref mirrored2"> {@link ObjectReference}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *   <TD headers="objref type2">     {@link ClassType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 *   <TD headers="objref kind2">     an array</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   123
 *   <TD headers="objref example2">  {@code new int[5]}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 *   <TD headers="objref mirrored2"> {@link ArrayReference}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *   <TD headers="objref type2">     {@link ArrayType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *   <TD headers="objref kind2">     a string</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   128
 *   <TD headers="objref example2">  {@code "hello"}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *   <TD headers="objref mirrored2"> {@link StringReference}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 *   <TD headers="objref type2">     {@link ClassType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *   <TD headers="objref kind2">     a thread</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   133
 *   <TD headers="objref example2">  {@code Thread.currentThread()}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *   <TD headers="objref mirrored2"> {@link ThreadReference}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 *   <TD headers="objref type2">     {@link ClassType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 *   <TD headers="objref kind2">     a thread group</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   138
 *   <TD headers="objref example2">  {@code Thread.currentThread()}<br>&nbsp;&nbsp;{@code .getThreadGroup()}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 *   <TD headers="objref mirrored2"> {@link ThreadGroupReference}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 *   <TD headers="objref type2">     {@link ClassType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * <TR>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   142
 *   <TD headers="objref kind2">     a {@code java.lang.Class}<br>instance</TD>
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   143
 *   <TD headers="objref example2">  {@code this.getClass()}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 *   <TD headers="objref mirrored2"> {@link ClassObjectReference}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 *   <TD headers="objref type2">     {@link ClassType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 *   <TD headers="objref kind2">     a class loader</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   148
 *   <TD headers="objref example2">  {@code this.getClass()}<br>&nbsp;&nbsp;{@code .getClassLoader()}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 *   <TD headers="objref mirrored2"> {@link ClassLoaderReference}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 *   <TD headers="objref type2">     {@link ClassType}</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * <TR BGCOLOR="#EEEEFF">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 *   <TH id="other" colspan=4>Other</TH>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * <TR BGCOLOR="#EEEEFF">
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   154
 *   <TD id="kind3"     align="left">Kind of value</TD>
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   155
 *   <TD id="example3"  align="left">For example -<br>expression in target</TD>
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   156
 *   <TD id="mirrored3" align="left">Is mirrored as</TD>
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   157
 *   <TD id="type3"     align="left">{@link Type} of value</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 *   <TD headers="other kind3">     null</TD>
30037
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   160
 *   <TD headers="other example3">  {@code null}</TD>
3e785fad2c3b 8078622: remove tidy warnings from JPDA docs
avstepan
parents: 25859
diff changeset
   161
 *   <TD headers="other mirrored3"> {@code null}</TD>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 *   <TD headers="other type3">     n/a</TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * </TABLE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * @author Robert Field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * @author Gordon Hirsch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * @author James McIlree
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * @since  1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
20742
4ae78e8060d6 8008662: Add @jdk.Exported to JDK-specific/exported APIs
alanb
parents: 5506
diff changeset
   171
@jdk.Exported
4ae78e8060d6 8008662: Add @jdk.Exported to JDK-specific/exported APIs
alanb
parents: 5506
diff changeset
   172
public interface Value extends Mirror {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * Returns the run-time type of this value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @see Type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @return a {@link Type} which mirrors the value's type in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * target VM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    Type type();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
}