Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2012-06-19 16:12:47 +0000
committerThomas Watson2012-06-19 16:12:47 +0000
commit6a4cfc15d5e1c51d412b9f68d3743e62f523dd2d (patch)
tree123b63c6e3fc9d67016ebabaaee676ea45e5c993 /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java
parent497e4cccb125a39a7ce688b244a347e074b1229d (diff)
downloadrt.equinox.framework-6a4cfc15d5e1c51d412b9f68d3743e62f523dd2d.tar.gz
rt.equinox.framework-6a4cfc15d5e1c51d412b9f68d3743e62f523dd2d.tar.xz
rt.equinox.framework-6a4cfc15d5e1c51d412b9f68d3743e62f523dd2d.zip
Allow for revision info objects to be specified.
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