-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextools.java
More file actions
61 lines (48 loc) · 1.87 KB
/
extools.java
File metadata and controls
61 lines (48 loc) · 1.87 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.househarris.extools;
import java.sql.SQLException;
import java.util.Stack;
import org.househarris.extools.wdbm.TerminalWindow;
/**
*
* @author Zen Harris
*/
public interface extools {
/**
*
*/
static final String BLANK = " ";
// The following regular expressions find the field templates embeded in the FormTemplate list
// Field Templates Look Like @1<<<<<<<<<< @20<<<<<
// The Numbers being the link to the name of the field from the SQL database in the FieldList list
// These having been loaded in from the WDBM common data dictionary file
// set up for the SQL database being edited.
public static final String REGEXToMatchEmbededFieldTemplate = "@\\d+<+";
public static final String REGEXToMatchNumberEmbededInFieldTemplate = "\\d+";
public static final String SplittingColon = ":";
public static final String IndexScrollFieldLabel = "listscroll";
/**
*
*/
public static final String FormMenuPrompt = "[ESC]Back [E]dit [N]ext [P]rev [Home]Exit";
// public extools(){
// }
// public Key KeyInput(String... test);
// public wdbm wdbm(String test);
/**
*Stack containing Terminal Window definitions
*/
// public Stack<TerminalWindow> WindowStack = new Stack();
//public TerminalWindow TopWindow();
/**
* Stack containing Terminal Window definitions
* @param ScrollName
* @return
* @throws java.sql.SQLException
*/
public indexscroll WithTheIndexScroll(String ScrollName)throws SQLException;
}