Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tm.te.tcf.locator/src/org/eclipse/tm/te/tcf/locator/internal/PeersPersistenceDelegate.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.locator/src/org/eclipse/tm/te/tcf/locator/internal/PeersPersistenceDelegate.java13
1 files changed, 8 insertions, 5 deletions
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/src/org/eclipse/tm/te/tcf/locator/internal/PeersPersistenceDelegate.java b/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/src/org/eclipse/tm/te/tcf/locator/internal/PeersPersistenceDelegate.java
index 4de9be53f..09c2402fe 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/src/org/eclipse/tm/te/tcf/locator/internal/PeersPersistenceDelegate.java
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/src/org/eclipse/tm/te/tcf/locator/internal/PeersPersistenceDelegate.java
@@ -17,8 +17,8 @@ import java.io.OutputStreamWriter;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
-import org.eclipse.tm.te.core.interfaces.nodes.IPropertiesContainer;
-import org.eclipse.tm.te.core.persistence.AbstractPersistenceDelegate;
+import org.eclipse.tm.te.runtime.interfaces.properties.IPropertiesContainer;
+import org.eclipse.tm.te.runtime.persistence.AbstractPersistenceDelegate;
import org.eclipse.tm.te.tcf.locator.activator.CoreBundleActivator;
import org.eclipse.tm.te.tcf.locator.internal.nls.Messages;
@@ -28,8 +28,9 @@ import org.eclipse.tm.te.tcf.locator.internal.nls.Messages;
public class PeersPersistenceDelegate extends AbstractPersistenceDelegate {
/* (non-Javadoc)
- * @see org.eclipse.tm.te.core.persistence.interfaces.IPersistenceDelegate#write(org.eclipse.core.runtime.IPath, org.eclipse.tm.te.core.interfaces.nodes.IPropertiesContainer)
+ * @see org.eclipse.tm.te.runtime.persistence.interfaces.IPersistenceDelegate#write(org.eclipse.core.runtime.IPath, org.eclipse.tm.te.runtime.interfaces.nodes.IPropertiesContainer)
*/
+ @Override
public void write(IPath path, IPropertiesContainer data) throws IOException {
Assert.isNotNull(path);
Assert.isNotNull(data);
@@ -61,8 +62,9 @@ public class PeersPersistenceDelegate extends AbstractPersistenceDelegate {
}
/* (non-Javadoc)
- * @see org.eclipse.tm.te.core.persistence.interfaces.IPersistenceDelegate#delete(org.eclipse.core.runtime.IPath)
+ * @see org.eclipse.tm.te.runtime.persistence.interfaces.IPersistenceDelegate#delete(org.eclipse.core.runtime.IPath)
*/
+ @Override
public boolean delete(IPath path) throws IOException {
Assert.isNotNull(path);
@@ -82,8 +84,9 @@ public class PeersPersistenceDelegate extends AbstractPersistenceDelegate {
}
/* (non-Javadoc)
- * @see org.eclipse.tm.te.core.persistence.interfaces.IPersistenceDelegate#read(org.eclipse.core.runtime.IPath)
+ * @see org.eclipse.tm.te.runtime.persistence.interfaces.IPersistenceDelegate#read(org.eclipse.core.runtime.IPath)
*/
+ @Override
public IPropertiesContainer read(IPath path) throws IOException {
return null;
}

Back to the top