io.firebus.information.FunctionInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebus-core Show documentation
Show all versions of firebus-core Show documentation
Firebus core functionality
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