1 | private void initialize() {↵ | | 1 | private void initialize() {↵
|
2 | Parameter[] params = getParameters();↵ | | 2 | Parameter[] params = getParameters();↵
|
3 | if (params != null) {↵ | | 3 | if (params != null) {↵
|
4 | for (int i = 0; i < params.length; i++) {↵ | | 4 | for (int i = 0; i < params.length; i++) {↵
|
5 | if (LINES_KEY.equals(params[i].getName())) {↵ | | 5 | if (LINES_KEY.equals(params[i].getName())) {↵
|
6 | lines = new Long(params[i].getValue()).longValue();↵ | | 6 | setLines(new Long(params[i].getValue()).longValue());↵
|
7 | continue;↵ | | 7 | continue;↵
|
8 | }↵ | | 8 | }↵
|
9 | if (SKIP_KEY.equals(params[i].getName())) {↵ | | 9 | if (SKIP_KEY.equals(params[i].getName())) {↵
|
10 | skip = new Long(params[i].getValue()).longValue();↵ | | 10 | skip = new Long(params[i].getValue()).longValue();↵
|
11 | continue;↵ | | 11 | continue;↵
|
12 | | | 12 |
|