diff graal/com.oracle.graal.printer/src/com/oracle/graal/printer/HexCodeFile.java @ 14906:f3a5036cc13c

javadoc fixes javadoc has become stricter in jdk8
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 31 Mar 2014 20:51:09 +0200
parents a6fda38d8484
children cd9404a8216b
line wrap: on
line diff
--- a/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/HexCodeFile.java	Mon Mar 31 19:07:49 2014 +0200
+++ b/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/HexCodeFile.java	Mon Mar 31 20:51:09 2014 +0200
@@ -34,9 +34,9 @@
 /**
  * A HexCodeFile is a textual format for representing a chunk of machine code along with extra
  * information that can be used to enhance a disassembly of the code.
- * 
+ *
  * A pseudo grammar for a HexCodeFile is given below.
- * 
+ *
  * <pre>
  *     HexCodeFile ::= Platform Delim HexCode Delim (OptionalSection Delim)*
  * 
@@ -56,32 +56,32 @@
  * 
  *     Position, EntrySize, Low, High, NPairs KeySize OffsetSize ::= int
  * 
- *     Delim := "<||@"
+ *     Delim := "&lt;||@"
  * </pre>
- * 
+ *
  * There must be exactly one HexCode and Platform part in a HexCodeFile. The length of HexDigits
  * must be even as each pair of digits represents a single byte.
  * <p>
  * Below is an example of a valid Code input:
- * 
+ *
  * <pre>
- * 
- *  Platform AMD64 64  <||@
- *  HexCode 0 e8000000009090904883ec084889842410d0ffff48893c24e800000000488b3c24488bf0e8000000004883c408c3  <||@
+ *
+ *  Platform AMD64 64  &lt;||@
+ *  HexCode 0 e8000000009090904883ec084889842410d0ffff48893c24e800000000488b3c24488bf0e8000000004883c408c3  &lt;||@
  *  Comment 24 frame-ref-map: +0 {0}
  *  at java.lang.String.toLowerCase(String.java:2496) [bci: 1]
  *              |0
  *     locals:  |stack:0:a
  *     stack:   |stack:0:a
- *    <||@
- *  OperandComment 24 {java.util.Locale.getDefault()}  <||@
+ *    &lt;||@
+ *  OperandComment 24 {java.util.Locale.getDefault()}  &lt;||@
  *  Comment 36 frame-ref-map: +0 {0}
  *  at java.lang.String.toLowerCase(String.java:2496) [bci: 4]
  *              |0
  *     locals:  |stack:0:a
- *    <||@
- *  OperandComment 36 {java.lang.String.toLowerCase(Locale)}  <||@
- * 
+ *    &lt;||@
+ *  OperandComment 36 {java.lang.String.toLowerCase(Locale)}  lt;||@
+ *
  * </pre>
  */
 public class HexCodeFile {
@@ -209,7 +209,7 @@
 
     /**
      * Sets an operand comment for a given position.
-     * 
+     *
      * @return the previous operand comment for {@code pos}
      */
     public String addOperandComment(int pos, String comment) {