Home | History | Annotate | Download | only in spi

Lines Matching refs:version

5  *  The ASF licenses this file to You under the Apache License, Version 2.0
19 * @version $Revision: 1.3 $
40 * The version of this service provider.
42 protected String version;
49 * @param version
50 * the version of service provider.
52 public IIOServiceProvider(String vendorName, String version) {
56 if (version == null) {
57 throw new NullPointerException("version name cannot be NULL");
60 this.version = version;
88 * Gets the version of this service provider.
90 * @return the version of this service provider.
93 return version;