comparison graal/com.oracle.jvmci.runtime/src/com/oracle/jvmci/runtime/Services.java @ 21558:d563baeca9df

changed uses of Graal terminology to JVMCI (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 13:43:27 +0200
parents c1e2fdb5fea3
children
comparison
equal deleted inserted replaced
21557:31fc2fce38f3 21558:d563baeca9df
37 @Override 37 @Override
38 protected List<Service> computeValue(Class<?> type) { 38 protected List<Service> computeValue(Class<?> type) {
39 Service[] names = getServiceImpls(type); 39 Service[] names = getServiceImpls(type);
40 if (names == null || names.length == 0) { 40 if (names == null || names.length == 0) {
41 throw new InternalError( 41 throw new InternalError(
42 format("No implementations for %s found (ensure %s extends %s and that in suite.py the \"annotationProcessors\" attribute for the project enclosing %s includes \"com.oracle.graal.service.processor\")", 42 format("No implementations for %s found (ensure %s extends %s and that in suite.py the \"annotationProcessors\" attribute for the project enclosing %s includes \"com.oracle.jvmci.runtime.processor\")",
43 type.getSimpleName(), type.getSimpleName(), Service.class, type.getSimpleName())); 43 type.getSimpleName(), type.getSimpleName(), Service.class, type.getSimpleName()));
44 } 44 }
45 return Arrays.asList(names); 45 return Arrays.asList(names);
46 } 46 }
47 }; 47 };