1 | void setExtensionName(final String extensionName) {↵ | | 1 | void setImplementationVendor(final String implementationVendor) {↵
|
2 | verifyNotAReference();↵ | | 2 | verifyNotAReference();↵
|
3 | this.extensionName = extensionName;↵ | | 3 | this.implementationVendor = implementationVendor;↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * Set the specificationVersion of extension.↵ | | 6 | * Set the implementationVersion of extension.↵
|
7 | *↵ | | 7 | *↵
|
8 | * @param specificationVersion the specificationVersion of extension↵ | | 8 | * @param implementationVersion the implementationVersion of extension↵
|
9 | */↵ | | 9 | */↵
|
10 | public void setSpecificationVersion(final String specificationVersion) {↵ | | 10 | public void setImplementationVersion(final String implementationVersion) {↵
|
11 | verifyNotAReference();↵ | | 11 | verifyNotAReference();↵
|
12 | this.specificationVersion = new DeweyDecimal(specificationVersion);↵ | | 12 | this.implementationVersion = new DeweyDecimal(implementationVersion);↵
|
13 | }↵ | | 13 | }↵
|
|
14 | /**↵ | | 14 | /**↵
|
15 | * Set the specificationVendor of extension.↵ | | 15 | * Set the implementationURL of extension.↵
|
16 | *↵ | | 16 | *↵
|
17 | * @param specificationVendor the specificationVendor of extension↵ | | 17 | * @param implementationURL the implementationURL of extension↵
|
18 | */↵ | | 18 | */↵
|
19 | public void setSpecificationVendor(final String specificationVendor) {↵ | | 19 | public void setImplementationUrl(final String implementationURL) {↵
|
20 | verifyNotAReference();↵ | | 20 | verifyNotAReference();↵
|
21 | this.specificationVendor = specificationVendor;↵ | | 21 | this.implementationURL = implementationURL;↵
|
22 | | | 22 |
|