comparison graal/com.oracle.nfi/src/com/oracle/nfi/api/NativeFunctionInterfaceAccess.java @ 21894:91b861398ad6

removed dependency from NFI to JVMCI
author Doug Simon <doug.simon@oracle.com>
date Wed, 10 Jun 2015 16:10:26 +0200
parents 2f92172fa320
children
comparison
equal deleted inserted replaced
21893:db885c930362 21894:91b861398ad6
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.nfi.api; 23 package com.oracle.nfi.api;
24 24
25 import com.oracle.jvmci.service.*;
26
27 /** 25 /**
28 * A {@linkplain Service JVMCI service} that provides access to a {@link NativeFunctionInterface} 26 * A service that provides access to a {@link NativeFunctionInterface} implementation.
29 * implementation.
30 */ 27 */
31 public interface NativeFunctionInterfaceAccess extends Service { 28 public interface NativeFunctionInterfaceAccess {
32 29
33 /** 30 /**
34 * Gets the {@link NativeFunctionInterface} implementation available via this access object. 31 * Gets the {@link NativeFunctionInterface} implementation available via this access object.
35 */ 32 */
36 NativeFunctionInterface getNativeFunctionInterface(); 33 NativeFunctionInterface getNativeFunctionInterface();