comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/impl/Accessor.java @ 21554:b1530a6cce8c

renamed com.oracle.graal.[debug|options|hotspotvmconfig]* modules to com.oracle.jvmci.[debug|options|hotspotvmconfig]* modules (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Tue, 26 May 2015 23:21:15 +0200
parents bb51b9a142b3
children 31fc2fce38f3
comparison
equal deleted inserted replaced
21553:0910a9497b02 21554:b1530a6cce8c
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.impl; 25 package com.oracle.truffle.api.impl;
26 26
27 import com.oracle.truffle.api.TruffleLanguage; 27 import java.io.*;
28 import com.oracle.truffle.api.vm.TruffleVM; 28 import java.lang.reflect.*;
29 import com.oracle.truffle.api.source.Source; 29 import java.util.*;
30 import java.io.IOException; 30
31 import java.lang.reflect.Constructor; 31 import com.oracle.truffle.api.*;
32 import java.util.ServiceLoader; 32 import com.oracle.truffle.api.source.*;
33 import com.oracle.truffle.api.vm.*;
33 34
34 /** 35 /**
35 * Communication between TruffleVM and TruffleLanguage API/SPI. 36 * Communication between TruffleVM and TruffleLanguage API/SPI.
36 */ 37 */
37 public abstract class Accessor { 38 public abstract class Accessor {