1 | if (null != specificationVersion) {↵ | | |
|
2 | sb.append(SPECIFICATION_VERSION);↵ | | |
|
3 | sb.append(brace);↵ | | |
|
4 | sb.append(specificationVersion);↵ | | |
|
5 | sb.append(StringUtils.LINE_SEP);↵ | | |
|
6 | }↵ | | |
|
|
7 | if (null != specificationVendor) {↵ | | 1 | if (null != specificationVendor) {↵
|
8 | sb.append(SPECIFICATION_VENDOR);↵ | | 2 | sb.append(SPECIFICATION_VENDOR);↵
|
9 | sb.append(brace);↵ | | 3 | sb.append(brace);↵
|
10 | sb.append(specificationVendor);↵ | | 4 | sb.append(specificationVendor);↵
|
11 | sb.append(StringUtils.LINE_SEP);↵ | | 5 | sb.append(StringUtils.LINE_SEP);↵
|
12 | }↵ | | 6 | }↵
|
|
13 | if (null != implementationTitle) {↵ | | 7 | if (null != implementationTitle) {↵
|
14 | sb.append(IMPLEMENTATION_TITLE);↵ | | 8 | sb.append(IMPLEMENTATION_TITLE);↵
|
15 | sb.append(brace);↵ | | 9 | sb.append(brace);↵
|
16 | sb.append(implementationTitle);↵ | | 10 | sb.append(implementationTitle);↵
|
17 | sb.append(StringUtils.LINE_SEP);↵ | | 11 | sb.append(StringUtils.LINE_SEP);↵
|
18 | }↵ | | 12 | }↵
|
|
19 | if (null != implementationVersion) {↵ | | 13 | if (null != implementationVersion) {↵
|
20 | sb.append(IMPLEMENTATION_VERSION);↵ | | 14 | sb.append(IMPLEMENTATION_VERSION);↵
|
21 | sb.append(brace);↵ | | 15 | sb.append(brace);↵
|
22 | sb.append(implementationVersion);↵ | | 16 | sb.append(implementationVersion);↵
|
23 | sb.append(StringUtils.LINE_SEP);↵ | | 17 | sb.append(StringUtils.LINE_SEP);↵
|
24 | | | 18 | }↵
|
|
| | | 19 | if (null != implementationVendor) {↵
|
| | | 20 | sb.append(IMPLEMENTATION_VENDOR);↵
|
| | | 21 | sb.append(brace);↵
|
| | | 22 | sb.append(implementationVendor);↵
|
| | | 23 | sb.append(StringUtils.LINE_SEP);↵
|
| | | 24 |
|