]> git.argeo.org Git - gpl/argeo-slc.git/blob - repo/osgi/OsgiCategorizedNV.java
Prepare next development cycle
[gpl/argeo-slc.git] / repo / osgi / OsgiCategorizedNV.java
1 package org.argeo.slc.repo.osgi;
2
3 import org.argeo.slc.DefaultCategorizedNameVersion;
4
5 /** */
6 class OsgiCategorizedNV extends DefaultCategorizedNameVersion implements Runnable {
7 /** Build runnable */
8 private ArchiveWrapper build;
9
10 public OsgiCategorizedNV(String category, String name, String version, ArchiveWrapper build) {
11 super(category, name, version);
12 this.build = build;
13 }
14
15 @Override
16 public void run() {
17 if (build != null)
18 build.run();
19 }
20
21 public ArchiveWrapper getBuild() {
22 return build;
23 }
24
25 }