Child: [r23] (diff)

Download this file

ui.java    17 lines (15 with data), 400 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/*
* 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
;
}