Skip to content

Commit c23558f

Browse files
committed
Merge origin/master
2 parents e4ef6e2 + a55c4de commit c23558f

File tree

12 files changed

+841
-16
lines changed

12 files changed

+841
-16
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Also I would like to know about needed examples or documentation stuff.
4747

4848
## Extensions in the latest SNAPSHOT version 1.1
4949

50+
* absolute token positions in addition to column/line
5051
* common normal form transformer for expressions (https://en.wikipedia.org/wiki/Conjunctive_normal_form)
5152
* checkstyle integration to force first souce code conventions
5253
* checkstyle is activated by default, it can be deactivated by an environment property **skipCheckSources**

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@
386386
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
387387
<checkstyleRules>
388388
<module name="Checker">
389+
<module name="SuppressWarningsFilter" />
389390
<module name="FileTabCharacter" />
390391
<!-- git checkout may change linefeeds on the fly
391392
<module name="RegexpMultiline">
@@ -411,6 +412,8 @@
411412
<module name="UnnecessaryParentheses" />
412413
<module name="LeftCurly"/>
413414
<module name="RightCurly"/>
415+
416+
<module name="SuppressWarningsHolder" />
414417
</module>
415418
</module>
416419
</checkstyleRules>
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* #%L
3+
* JSQLParser library
4+
* %%
5+
* Copyright (C) 2004 - 2017 JSQLParser
6+
* %%
7+
* This program is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU Lesser General Public License as
9+
* published by the Free Software Foundation, either version 2.1 of the
10+
* License, or (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Lesser Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Lesser Public
18+
* License along with this program. If not, see
19+
* <http://www.gnu.org/licenses/lgpl-2.1.html>.
20+
* #L%
21+
*/
22+
/*
23+
* Copyright (C) 2017 JSQLParser.
24+
*
25+
* This library is free software; you can redistribute it and/or
26+
* modify it under the terms of the GNU Lesser General Public
27+
* License as published by the Free Software Foundation; either
28+
* version 2.1 of the License, or (at your option) any later version.
29+
*
30+
* This library is distributed in the hope that it will be useful,
31+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
32+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33+
* Lesser General Public License for more details.
34+
*
35+
* You should have received a copy of the GNU Lesser General Public
36+
* License along with this library; if not, write to the Free Software
37+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
38+
* MA 02110-1301 USA
39+
*/
40+
package net.sf.jsqlparser.parser;
41+
42+
/**
43+
*
44+
* @author toben
45+
*/
46+
public class BaseToken {
47+
public int absoluteBegin = 0;
48+
public int absoluteEnd = 0;
49+
}

0 commit comments

Comments
 (0)