All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jace.parser.constant.Constant Maven / Gradle / Ivy

There is a newer version: 1.2.22
Show newest version
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