org.jetbrains.java.decompiler.main.plugins.PluginSources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vineflower Show documentation
Show all versions of vineflower Show documentation
Modern Java & JVM language decompiler aiming to be as accurate as possible, with an emphasis on output quality.
The newest version!
package org.jetbrains.java.decompiler.main.plugins;
import org.jetbrains.java.decompiler.api.plugin.PluginSource;
import java.util.ArrayList;
import java.util.List;
public class PluginSources {
public static List PLUGIN_SOURCES = new ArrayList<>();
static {
PLUGIN_SOURCES.add(new JarPluginSource());
PLUGIN_SOURCES.add(new ServicePluginSource());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy