Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java
index b0caae051..4b7be7899 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java
@@ -155,4 +155,14 @@ public abstract class ModuleContainerAdaptor {
* @return the system module
*/
public abstract SystemModule createSystemModule();
+
+ /**
+ * Returns the current revision info for a module with the specified location and id
+ * @param location the location of the module
+ * @param id the id of the module
+ * @return the revision info, may be {@code null}
+ */
+ public Object getRevisionInfo(String location, long id) {
+ return null;
+ }
}

Back to the top