]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/osgi/SourcesProvider.java
Move SLC Support
[gpl/argeo-slc.git] / runtime / org.argeo.slc.repo / src / main / java / org / argeo / slc / repo / osgi / SourcesProvider.java
diff --git a/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/osgi/SourcesProvider.java b/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/osgi/SourcesProvider.java
deleted file mode 100644 (file)
index a0a20f6..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package org.argeo.slc.repo.osgi;
-
-import java.util.List;
-import java.util.zip.ZipOutputStream;
-
-/** Provides access to Java sources */
-public interface SourcesProvider {
-       /**
-        * Writes sources into a ZIP (or a JAR), under the same sirectory structure.
-        * 
-        * @param packages
-        *            the packages to import
-        * @param out
-        *            the ZIP or JAR to write to
-        */
-       public void writeSources(List<String> packages, ZipOutputStream zout);
-}