# HG changeset patch # User Christos Kotselidis # Date 1374264893 -7200 # Node ID 78a4df8953a1935efdb74af49c0c60b61f092b06 # Parent 0910c930c66e0fb427735a22a7a15cb5a1cd2919 Javadoc fixes diff -r 0910c930c66e -r 78a4df8953a1 graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/HeapAccess.java --- 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