- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
//...
public class RAWVALUEOBJECT {
public int retCode = 0;
public String retMessage = "";
public String retValue = "";
public RAWVALUEOBJECT(int retCode, String retMessage, String retValue)
{
this.retCode = retCode;
this.retMessage = retMessage;
this.retValue = retValue;
}
}
Hashtable<String, String> VALUES = null;
ArrayList<String> FILTERS = null;
RAWVALUEOBJECT RAWVALUES = null;
boolean catchRAW = false;
boolean stopAfterRAW = false;
public PackageVal() {
this.VALUES = new Hashtable<String, String>();
}
public Hashtable<String, String> V() {
return VALUES;
}
public ArrayList<String> F() {
return FILTERS;
}
public RAWVALUEOBJECT R() {
return RAWVALUES;
}
//...
CrashTesterAnusov 18.09.2016 20:17 # −66