changeset 9660:c37c52445e75

javadoc fixes
author Doug Simon <doug.simon@oracle.com>
date Mon, 13 May 2013 13:57:49 +0200
parents c5b1b4dcc094
children c6f3c1e48f54
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/Stub.java
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/Stub.java	Mon May 13 13:57:24 2013 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/Stub.java	Mon May 13 13:57:49 2013 +0200
@@ -54,7 +54,7 @@
 public abstract class Stub {
 
     /**
-     * The linkage information for the stub.
+     * The linkage information for a call to this stub from compiled code.
      */
     protected final HotSpotRuntimeCallTarget linkage;
 
@@ -106,10 +106,16 @@
         this.replacements = replacements;
     }
 
+    /**
+     * Gets the linkage for a call to this stub from compiled code.
+     */
     public HotSpotRuntimeCallTarget getLinkage() {
         return linkage;
     }
 
+    /**
+     * Gets the graph that from which the code for this stub will be compiled.
+     */
     protected abstract StructuredGraph getGraph();
 
     @Override