package database;
/**
The fields in this class offer a list of possible file names.
If the table name is, for example, TST, then it will appear as:
<p>
%userProfile%\ActionPOS\TST.csv (on Windows.)
<p>
$HOME/ActionPOS/TST.csv (on Unix)
*/
public final class Tables
{
/**
Users Master File
*/
public static String USR = "USR";
/** Static Stock Information */
public static String SSI = "SSI";
/** Stock Count Numbers */
public static String SCN = "SCN";
/** Menu Categories (Displayed in Sales Module)
<p>
This is a list of categories, which will contain certain Sales Items when they are clicked on.
<p> But the data for these items is separate to the categories file. */
public static String MEN = "MEN";
}