org.fernice.reflare.internal.impl.CompatibilityAccessorImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fernice-reflare-access-jdk-10 Show documentation
Show all versions of fernice-reflare-access-jdk-10 Show documentation
Helper Implementation for JDK 10
package org.fernice.reflare.internal.impl;
import org.fernice.reflare.internal.CompatibilityHelper.CompatibilityAccessor;
import org.fernice.refract.Modules;
public class CompatibilityAccessorImpl implements CompatibilityAccessor {
@Override
public void ensureCompatibility() {
Modules.addExports("java.desktop", "sun.swing", "EVERYONE");
Modules.addExports("java.desktop", "sun.font", "EVERYONE");
Modules.addExports("java.desktop", "sun.awt.shell", "EVERYONE");
}
}