Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIkuo Yamasaki2007-03-12 17:52:23 +0000
committerIkuo Yamasaki2007-03-12 17:52:23 +0000
commita4f8ba10a68cc8fb359cee5a46bbdc1182dc5520 (patch)
tree77be4e179192af9210eca19f0d07be6666d43a6e /bundles/org.eclipse.equinox.frameworkadmin
parent9a124e3d786b99eb9f39ad3387240d7b4fa522a2 (diff)
downloadrt.equinox.p2-a4f8ba10a68cc8fb359cee5a46bbdc1182dc5520.tar.gz
rt.equinox.p2-a4f8ba10a68cc8fb359cee5a46bbdc1182dc5520.tar.xz
rt.equinox.p2-a4f8ba10a68cc8fb359cee5a46bbdc1182dc5520.zip
getTimeStamp() is added to Manipulatorv20070312-1400-for-provisioning
Diffstat (limited to 'bundles/org.eclipse.equinox.frameworkadmin')
-rw-r--r--bundles/org.eclipse.equinox.frameworkadmin/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.equinox.frameworkadmin/src/org/eclipse/equinox/frameworkadmin/Manipulator.java10
2 files changed, 11 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.frameworkadmin/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.frameworkadmin/META-INF/MANIFEST.MF
index 6c64cd5bd..a547f4bd7 100644
--- a/bundles/org.eclipse.equinox.frameworkadmin/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.frameworkadmin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: FrameworkAdmin Service IF
Bundle-SymbolicName: org.eclipse.equinox.frameworkadmin
-Bundle-Version: 1.4.2
+Bundle-Version: 1.5.0
Bundle-Vendor: Eclipse.org
Bundle-Localization: plugin
Import-Package: org.osgi.framework;version="1.3.0",
diff --git a/bundles/org.eclipse.equinox.frameworkadmin/src/org/eclipse/equinox/frameworkadmin/Manipulator.java b/bundles/org.eclipse.equinox.frameworkadmin/src/org/eclipse/equinox/frameworkadmin/Manipulator.java
index 874df8607..d8bcd2c32 100644
--- a/bundles/org.eclipse.equinox.frameworkadmin/src/org/eclipse/equinox/frameworkadmin/Manipulator.java
+++ b/bundles/org.eclipse.equinox.frameworkadmin/src/org/eclipse/equinox/frameworkadmin/Manipulator.java
@@ -113,6 +113,16 @@ public interface Manipulator {
LauncherData getLauncherData() throws FrameworkAdminRuntimeException;
/**
+ * Return timestamp of configurations which will be loaded by load() method
+ * according to the parameters set to this manipulator in long value.
+ *
+ * This method will check last modified time of all laucnher config file, framework config file,
+ * and framework persistent storage according to the parameters set.
+ * @return
+ */
+ long getTimeStamp();
+
+ /**
* Initialize all information that this object keeps at that time.
*/
void initialize();

Back to the top