org.jace.parser.constant.ConstantReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jace-core-java Show documentation
Show all versions of jace-core-java Show documentation
Jace core module, Java source-code
package org.jace.parser.constant;
import java.io.InputStream;
import org.jace.parser.ConstantPool;
public interface ConstantReader
{
public int getTag();
public Constant readConstant(InputStream input, ConstantPool pool) throws ClassFormatError;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy