-
Notifications
You must be signed in to change notification settings - Fork 0
/
Function.java
91 lines (75 loc) · 1.62 KB
/
Function.java
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.gpsoft.jevalexpr.functions;
import com.gpsoft.jevalexpr.ExpBin;
import com.gpsoft.jevalexpr.Token;
import com.gpsoft.jevalexpr.TypeData;
import com.gpsoft.jevalexpr.TypeStep;
import com.gpsoft.jevalexpr.TypeToken;
import com.gpsoft.jevalexpr.ValueType;
/**
* This abstract class represents prototype of functions
*
* @author Giovanni palleschi
* @version 1.0.0
*
*/
public abstract class Function {
String name;
Token<Object> token;
TypeToken typeToken;
int operatorSyntaxType;
int operatorPriority;
int idxPartOpe;
ValueType valueType;
TypeStep typeStep;
int stepRef;
TypeData typeData;
/**
* This method checks function, number of arguments, types, ...
*
* @param expBin
* @param stepIdx
* @return boolean (true if it's ok false is nok)
*/
public boolean check(ExpBin<?> expBin, int stepIdx) {
return false;
}
/**
* This method execute function
*
* @param expBin
* @param stepIdx
* @return boolean (true if it's ok false is nok)
*/
public boolean exec(ExpBin<?> expBin, int stepIdx) {
return false;
}
public String getName() {
return name;
}
public TypeToken getTypeToken() {
return typeToken;
}
public int getOperatorSyntaxType() {
return operatorSyntaxType;
}
public int getOperatorPriority() {
return operatorPriority;
}
public int getIdxPartOpe() {
return idxPartOpe;
}
public ValueType getValueType() {
return valueType;
}
public TypeStep getTypeStep() {
return typeStep;
}
public int getStepRef() {
return stepRef;
}
public TypeData getTypeData() {
return typeData;
}
public void checkBefore(String substring, int expPos) {
}
}