use of com.oracle.svm.core.configure.ResourcesRegistry in project graal by oracle.
the class JNIRegistrationAwt method registerColorProfiles.
private static void registerColorProfiles(DuringAnalysisAccess duringAnalysisAccess) {
ResourcesRegistry resourcesRegistry = ImageSingletons.lookup(ResourcesRegistry.class);
resourcesRegistry.addResources(ConfigurationCondition.alwaysTrue(), "sun.java2d.cmm.profiles.*");
}
use of com.oracle.svm.core.configure.ResourcesRegistry in project graal by oracle.
the class JNIRegistrationAwt method registerRTFReaderCharsets.
private static void registerRTFReaderCharsets(DuringAnalysisAccess duringAnalysisAccess) {
ResourcesRegistry resourcesRegistry = ImageSingletons.lookup(ResourcesRegistry.class);
resourcesRegistry.addResources(ConfigurationCondition.alwaysTrue(), "javax.swing.text.rtf.charsets.*");
}
use of com.oracle.svm.core.configure.ResourcesRegistry in project graal by oracle.
the class JNIRegistrationAwt method registerHtml32bdtd.
private static void registerHtml32bdtd(DuringAnalysisAccess duringAnalysisAccess) {
ResourcesRegistry resourcesRegistry = ImageSingletons.lookup(ResourcesRegistry.class);
resourcesRegistry.addResources(ConfigurationCondition.alwaysTrue(), "javax.swing.text.html.parser.html32.bdtd");
}
use of com.oracle.svm.core.configure.ResourcesRegistry in project graal by oracle.
the class JNIRegistrationAwt method registerFlavorMapProps.
private static void registerFlavorMapProps(DuringAnalysisAccess duringAnalysisAccess) {
ResourcesRegistry resourcesRegistry = ImageSingletons.lookup(ResourcesRegistry.class);
resourcesRegistry.addResources(ConfigurationCondition.alwaysTrue(), "sun.datatransfer.resources.flavormap.properties");
}
use of com.oracle.svm.core.configure.ResourcesRegistry in project graal by oracle.
the class JNIRegistrationAwt method registerOceanThemeIcons.
private static void registerOceanThemeIcons(DuringAnalysisAccess duringAnalysisAccess) {
ResourcesRegistry resourcesRegistry = ImageSingletons.lookup(ResourcesRegistry.class);
resourcesRegistry.addResources(ConfigurationCondition.alwaysTrue(), "javax.swing.plaf.metal.icons.*");
resourcesRegistry.addResources(ConfigurationCondition.alwaysTrue(), "javax.swing.plaf.basic.icons.*");
}
Aggregations