comparison truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/Truffle.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 8b72dfac5cc7
children 9c108011f794
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api; 25 package com.oracle.truffle.api;
26 26
27 import java.lang.reflect.*; 27 import com.oracle.truffle.api.impl.DefaultTruffleRuntime;
28 import java.security.*; 28 import java.lang.reflect.Method;
29 29 import java.security.AccessController;
30 import com.oracle.truffle.api.impl.*; 30 import java.security.PrivilegedAction;
31 31
32 /** 32 /**
33 * Class for obtaining the Truffle runtime singleton object of this virtual machine. 33 * Class for obtaining the Truffle runtime singleton object of this virtual machine.
34 */ 34 */
35 public class Truffle { 35 public class Truffle {