/*
* Helps to indicate the different types of user interfaces available
*/
package definitions;
/**
*
* @author Nuno Brito, 18th of April 2013 in Darmstadt, Germany
*/
public class ui {
public final static int
CLI = 0, // basic mode, always available
GUI = 2, // graphical user interface
WEB = 4 // web user interface
;
}