--- old/src/jdk.jdi/share/classes/com/sun/jdi/Value.java 2015-04-24 19:20:48.723879546 +0400 +++ new/src/jdk.jdi/share/classes/com/sun/jdi/Value.java 2015-04-24 19:20:48.487879546 +0400 @@ -63,47 +63,47 @@ * {@link Type} of value
{@link #type() Value.type()} * * a boolean - * true + * {@code true} * {@link BooleanValue} * {@link BooleanType} * * a byte - * (byte)4 + * {@code (byte)4} * {@link ByteValue} * {@link ByteType} * * a char - * 'a' + * {@code 'a'} * {@link CharValue} * {@link CharType} * * a double - * 3.1415926 + * {@code 3.1415926} * {@link DoubleValue} * {@link DoubleType} * * a float - * 2.5f + * {@code 2.5f} * {@link FloatValue} * {@link FloatType} * * an int - * 22 + * {@code 22} * {@link IntegerValue} * {@link IntegerType} * * a long - * 1024L + * {@code 1024L} * {@link LongValue} * {@link LongType} * * a short - * (short)12 + * {@code (short)12} * {@link ShortValue} * {@link ShortType} * * a void - *   + * * {@link VoidValue} * {@link VoidType} * @@ -115,50 +115,50 @@ * {@link Type} of value
{@link #type() Value.type()} * * a class instance - * this + * {@code this} * {@link ObjectReference} * {@link ClassType} * * an array - * new int[5] + * {@code new int[5]} * {@link ArrayReference} * {@link ArrayType} * * a string - * "hello" + * {@code "hello"} * {@link StringReference} * {@link ClassType} * * a thread - * Thread.currentThread() + * {@code Thread.currentThread()} * {@link ThreadReference} * {@link ClassType} * * a thread group - * Thread.currentThread()
  .getThreadGroup()
+ * {@code Thread.currentThread()}
  {@code .getThreadGroup()} * {@link ThreadGroupReference} * {@link ClassType} * - * a java.lang.Class
instance - * this.getClass() + * a {@code java.lang.Class}
instance + * {@code this.getClass()} * {@link ClassObjectReference} * {@link ClassType} * * a class loader - * this.getClass()
  .getClassLoader()
+ * {@code this.getClass()}
  {@code .getClassLoader()} * {@link ClassLoaderReference} * {@link ClassType} * * Other * - * Kind of value - * For example -
expression in target - * Is mirrored as - * {@link Type} of value + * Kind of value + * For example -
expression in target + * Is mirrored as + * {@link Type} of value * * null - * null - * null + * {@code null} + * {@code null} * n/a * *