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