File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
src/main/java/net/sf/jsqlparser/expression Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change 43
43
import net .sf .jsqlparser .expression .operators .relational .MinorThan ;
44
44
import net .sf .jsqlparser .expression .operators .relational .MinorThanEquals ;
45
45
import net .sf .jsqlparser .expression .operators .relational .NotEqualsTo ;
46
- import net .sf .jsqlparser .expression .operators .relational .DoubleAnd ;// Added by mathew on 21st Nov
47
- // 2016
48
- import net .sf .jsqlparser .expression .operators .relational .Contains ;// Added by mathew on 21st Nov
49
- // 2016
50
- import net .sf .jsqlparser .expression .operators .relational .ContainedBy ;// Added by mathew on 21st Nov
51
- // 2016
46
+ import net .sf .jsqlparser .expression .operators .relational .DoubleAnd ;
47
+ import net .sf .jsqlparser .expression .operators .relational .Contains ;
48
+ import net .sf .jsqlparser .expression .operators .relational .ContainedBy ;
52
49
import net .sf .jsqlparser .expression .operators .relational .RegExpMatchOperator ;
53
50
import net .sf .jsqlparser .expression .operators .relational .SimilarToExpression ;
54
51
import net .sf .jsqlparser .schema .Column ;
@@ -131,11 +128,11 @@ public interface ExpressionVisitor {
131
128
132
129
void visit (NotEqualsTo notEqualsTo );
133
130
134
- void visit (DoubleAnd doubleAnd );// Added by mathew on 21st Nov 2016
131
+ void visit (DoubleAnd doubleAnd );
135
132
136
- void visit (Contains contains );// Added by mathew on 21st Nov 2016
133
+ void visit (Contains contains );
137
134
138
- void visit (ContainedBy containedBy );// Added by mathew on 21st Nov 2016
135
+ void visit (ContainedBy containedBy );
139
136
140
137
void visit (ParenthesedSelect selectBody );
141
138
You can’t perform that action at this time.
0 commit comments