diff graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/InstalledCode.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents 2463eb24b644
children 8d6ea1915d42
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/InstalledCode.java	Wed Jan 23 16:34:38 2013 +0100
+++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/InstalledCode.java	Wed Jan 23 16:34:57 2013 +0100
@@ -25,7 +25,8 @@
 import com.oracle.graal.api.meta.*;
 
 /**
- * Represents a compiled instance of a method. It may have been invalidated or removed in the meantime.
+ * Represents a compiled instance of a method. It may have been invalidated or removed in the
+ * meantime.
  */
 public interface InstalledCode {
 
@@ -43,12 +44,14 @@
     ResolvedJavaMethod getMethod();
 
     /**
-     * @return true if the code represented by this object is still valid, false otherwise (may happen due to deopt, etc.)
+     * @return true if the code represented by this object is still valid, false otherwise (may
+     *         happen due to deopt, etc.)
      */
     boolean isValid();
 
     /**
      * Executes the installed code with three object arguments.
+     * 
      * @param arg1 the first argument
      * @param arg2 the second argument
      * @param arg3 the third argument
@@ -58,6 +61,7 @@
 
     /**
      * Executes the installed code with a variable number of arguments.
+     * 
      * @param args the array of object arguments
      * @return the value returned by the executed code
      */