[go: up one dir, main page]

Menu

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

Download this file

21 lines (20 with data), 485 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
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";
}