com.oracle.graal.python.resources.PythonResourceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of python-resources Show documentation
Show all versions of python-resources Show documentation
GraalPython runtime resources
The newest version!
// CheckStyle: start generated
package com.oracle.graal.python.resources;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.provider.InternalResourceProvider;
@GeneratedBy(PythonResource.class)
public final class PythonResourceProvider extends InternalResourceProvider {
@Override
protected String getComponentId() {
return "python";
}
@Override
protected String getResourceId() {
return "python-home";
}
@Override
protected Object createInternalResource() {
return new PythonResource();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy