org.jace.parser.constant.Constant 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.DataOutputStream;
import java.io.IOException;
public interface Constant
{
public int getSize();
public Object getValue();
public void write(DataOutputStream output) throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy