[go: up one dir, main page]

Menu

[r31]: / database / Tables.java  Maximize  Restore  History

Download this file

33 lines (32 with data), 923 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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";
}