# HG changeset patch # User Doug Simon # Date 1368446269 -7200 # Node ID c37c52445e7549474bf51aa2f76c1d5ac72454d1 # Parent c5b1b4dcc0947d2835f9c5a58403bef8bfff208a javadoc fixes diff -r c5b1b4dcc094 -r c37c52445e75 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/stubs/Stub.java --- 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