spoon.decompiler.Decompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spoon-decompiler Show documentation
Show all versions of spoon-decompiler Show documentation
Extension of spoon for bytecode through decompilation
The newest version!
/**
* Copyright (C) 2006-2018 INRIA and contributors
* Spoon - http://spoon.gforge.inria.fr/
*
* This software is governed by the CeCILL-C License under French law and
* abiding by the rules of distribution of free software. You can use, modify
* and/or redistribute the software under the terms of the CeCILL-C license as
* circulated by CEA, CNRS and INRIA at http://www.cecill.info.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the CeCILL-C License for more details.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL-C license and that you accept its terms.
*/
package spoon.decompiler;
import spoon.support.Experimental;
@Experimental
public interface Decompiler {
/**
* Sets the output directory for source generated.
*
* @param inputPath path to the bytecode (.jar, or .class file) to be decompiled.
* @param outputPath path to directory to put decompied sources
* @param classpath classpath of the byte code to be decompiled(Can be empty)
*/
void decompile(String inputPath, String outputPath, String[] classpath);
}