]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/build/NameVersion.java
Improve Javadocs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / build / NameVersion.java
index 7623a102b44b3c72955f8009020c299b23210990..0be583be4c0aeb7e9b266b99573bc5895aab3466 100644 (file)
 
 package org.argeo.slc.build;
 
+/**
+ * Abstraction of a name / version pair, typically used as coordinates for a
+ * software module either deployed or packaged as an archive.
+ */
 public interface NameVersion {
+       /** The name of the component. */
        public String getName();
 
+       /** The version of teh component. */
        public String getVersion();
 }