comparison graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/TruffleRuntimeTest.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 a4b84ba6dc2e
children 5a1d764f6afc
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
26 26
27 import com.oracle.truffle.api.*; 27 import com.oracle.truffle.api.*;
28 28
29 /** 29 /**
30 * <h3>Accessing the Truffle Runtime</h3> 30 * <h3>Accessing the Truffle Runtime</h3>
31 * 31 *
32 * <p> 32 * <p>
33 * The Truffle runtime can be accessed at any point in time globally using the static method 33 * The Truffle runtime can be accessed at any point in time globally using the static method
34 * {@link Truffle#getRuntime()}. This method is guaranteed to return a non-null Truffle runtime object with an 34 * {@link Truffle#getRuntime()}. This method is guaranteed to return a non-null Truffle runtime
35 * identifying name. A Java Virtual Machine implementation can chose to replace the default implementation of the 35 * object with an identifying name. A Java Virtual Machine implementation can chose to replace the
36 * {@link TruffleRuntime} interface with its own implementation for providing improved performance. 36 * default implementation of the {@link TruffleRuntime} interface with its own implementation for
37 * providing improved performance.
37 * </p> 38 * </p>
38 * 39 *
39 * <p> 40 * <p>
40 * The next part of the Truffle API introduction is at {@link com.oracle.truffle.api.test.RootNodeTest}. 41 * The next part of the Truffle API introduction is at
42 * {@link com.oracle.truffle.api.test.RootNodeTest}.
41 * </p> 43 * </p>
42 */ 44 */
43 public class TruffleRuntimeTest { 45 public class TruffleRuntimeTest {
44 46
45 @Test 47 @Test