org.jetbrains.java.decompiler.main.Init 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;
import org.jetbrains.java.decompiler.main.plugins.JarPluginLoader;
import org.jetbrains.java.decompiler.struct.attr.StructGeneralAttribute;
public final class Init {
private static boolean initialized = false;
public static void init() {
if (initialized) {
return;
}
initialized = true;
// Load all Java code attributes
StructGeneralAttribute.init();
// Class-load all plugins that potentially could be included in the jar
JarPluginLoader.init();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy