Java lib for parsing and evaluating simple math expressions, using fractions. This was a seminar project in a Programming class. It is not very useful, but works
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rcalc/src/net/mightypork/rcalc/IDebugable.java

26 lines
371 B

package net.mightypork.rcalc;
/**
* Interface for classes with optional debug mode
*
* @author Ondrej Hruska
*/
public interface IDebugable {
/**
* Get if debug mode is enabled
*
* @return debug enabled
*/
public boolean isDebug();
/**
* Enable / disable debug mode
*
* @param debug enable debug
*/
public void setDebug(boolean debug);
}