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

io.firebus.information.FunctionInformation Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package io.firebus.information;

public abstract class FunctionInformation
{
	protected boolean fullInformation;
	protected int rating;

	public abstract byte[] serialise();
	
	public abstract void deserialise(byte[] bytes);

	public int getRating()
	{
		return rating;
	}
	
	public boolean hasFullInformation()
	{
		return fullInformation;
	}
	
	public void reduceRating(int i)
	{
		rating -= i;
	}
	
	public void resetRating()
	{
		rating = 0;
	}
	
	public abstract String toString();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy