package database;
import cell.*;
/**
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
{
static {
// this just sets our database directory:
Profile.setApplication( "ActionPOS");
}
/**
Users Master File
*/
public static String USR = "USR";
/** Static Stock Information */
public static String SSI = "SSI";
/** Stock Count Numbers */
public static String SCN = "SCN";
/** Printers master file */
public static String PRT = "PRT";
/** 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";
/** Sales Items Master File ..
depends on MEN.*/
public static String MIT = "MIT";
}