changeset 10822:78a4df8953a1

Javadoc fixes
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Fri, 19 Jul 2013 22:14:53 +0200
parents 0910c930c66e
children 2e852e96f977
files graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/HeapAccess.java
diffstat 1 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/HeapAccess.java	Fri Jul 19 22:10:48 2013 +0200
+++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/HeapAccess.java	Fri Jul 19 22:14:53 2013 +0200
@@ -23,24 +23,23 @@
 package com.oracle.graal.nodes;
 
 /**
- * A HeapAccess is a node that access the heap and therefore may be subjected to certain rules of
- * the underlying runtime.
+ * Encapsulates properties of a node describing how it accesses the heap.
  */
 public interface HeapAccess {
 
-    /*
+    /**
      * The types of write barriers attached to stores.
      */
     public enum WriteBarrierType {
-        /*
+        /**
          * Primitive stores which do not necessitate write barriers.
          */
         NONE,
-        /*
+        /**
          * Array object stores which necessitate precise write barriers.
          */
         PRECISE,
-        /*
+        /**
          * Field object stores which necessitate imprecise write barriers.
          */
         IMPRECISE