com.strobel.decompiler.languages.Languages Maven / Gradle / Ivy
/*
* Languages.java
*
* Copyright (c) 2013 Mike Strobel
*
* This source code is based on Mono.Cecil from Jb Evain, Copyright (c) Jb Evain;
* and ILSpy/ICSharpCode from SharpDevelop, Copyright (c) AlphaSierraPapa.
*
* This source code is subject to terms and conditions of the Apache License, Version 2.0.
* A copy of the license can be found in the License.html file at the root of this distribution.
* By using this source code in any fashion, you are agreeing to be bound by the terms of the
* Apache License, Version 2.0.
*
* You must not remove this notice, or any other, from this software.
*/
package com.strobel.decompiler.languages;
import com.strobel.core.ArrayUtilities;
import com.strobel.decompiler.languages.java.JavaLanguage;
import java.util.List;
public final class Languages {
private final static List ALL_LANGUAGES;
private final static List DEBUG_LANGUAGES;
private final static JavaLanguage JAVA;
private final static Language BYTECODE_AST_UNOPTIMIZED;
private final static Language BYTECODE_AST;
private final static Language BYTECODE;
static {
final List bytecodeAstLanguages = BytecodeAstLanguage.getDebugLanguages();
JAVA = new JavaLanguage();
BYTECODE = new BytecodeLanguage();
BYTECODE_AST_UNOPTIMIZED = bytecodeAstLanguages.get(0);
BYTECODE_AST = new BytecodeAstLanguage();
final Language[] languages = new Language[bytecodeAstLanguages.size()];
for (int i = 0; i < languages.length; i++) {
languages[i] = bytecodeAstLanguages.get(i);
}
ALL_LANGUAGES = ArrayUtilities.asUnmodifiableList(JAVA, BYTECODE_AST, BYTECODE_AST_UNOPTIMIZED);
DEBUG_LANGUAGES = ArrayUtilities.asUnmodifiableList(languages);
}
public static List all() {
return ALL_LANGUAGES;
}
public static List debug() {
return DEBUG_LANGUAGES;
}
public static JavaLanguage java() {
return JAVA;
}
public static Language bytecode() {
return BYTECODE;
}
public static Language bytecodeAst() {
return BYTECODE_AST;
}
public static Language bytecodeAstUnoptimized() {
return BYTECODE_AST_UNOPTIMIZED;
}
}