Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduard Bartsch2010-06-15 15:50:00 +0000
committerEduard Bartsch2010-06-15 15:50:00 +0000
commit69149f1d6874ba6f94919c1005435f791d5da273 (patch)
treef67dcf3e3b5da4cb861e038cc2ef049db9dc1544
parent05fac6de3d915d2a2b643951501a46d008ec9808 (diff)
downloadorg.eclipse.e4.resources-69149f1d6874ba6f94919c1005435f791d5da273.tar.gz
org.eclipse.e4.resources-69149f1d6874ba6f94919c1005435f791d5da273.tar.xz
org.eclipse.e4.resources-69149f1d6874ba6f94919c1005435f791d5da273.zip
Bug 316932 - [sfs] Implement ability to dynamically assign federated content providers
-rw-r--r--bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/Messages.java4
-rw-r--r--bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/SemanticFileStore.java4
-rw-r--r--bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/messages.properties4
3 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/Messages.java b/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/Messages.java
index 17eddb1..d53db1e 100644
--- a/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/Messages.java
+++ b/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/Messages.java
@@ -28,8 +28,8 @@ public class Messages extends NLS {
public static String SemanticFileStore_CreateFileRemote_XMSG;
public static String SemanticFileStore_CreateResourceRemtoe_XMSG;
public static String SemanticFileStore_DeleteResourceRemote_XMSG;
- public static String SemanticFileStore_FederatingContentProviderReturnedInvalidRootNodePosition;
- public static String SemanticFileStore_FederatingContentProviderReturnedNull;
+ public static String SemanticFileStore_FederatingContentProviderReturnedInvalidRootNodePosition_XMSG;
+ public static String SemanticFileStore_FederatingContentProviderReturnedNull_XMSG;
public static String SemanticFileStore_IntefaceNotImplemented_XMSG;
public static String SemanticFileStore_InvalidURISyntax_XMSG;
public static String SemanticFileStore_Locking_XMSG;
diff --git a/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/SemanticFileStore.java b/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/SemanticFileStore.java
index b8c7e1b..f0ee5b7 100644
--- a/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/SemanticFileStore.java
+++ b/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/SemanticFileStore.java
@@ -248,13 +248,13 @@ public class SemanticFileStore extends SemanticProperties implements ISemanticFi
if (info != null) {
if (info.contentProviderID == null) {
throw new SemanticResourceException(SemanticResourceStatusCode.FEDERATION_EMPTY_FEDERATED_PROVIDER_ID, path, NLS.bind(
- Messages.SemanticFileStore_FederatingContentProviderReturnedNull, parentProvider.getClass().getName(), path
+ Messages.SemanticFileStore_FederatingContentProviderReturnedNull_XMSG, parentProvider.getClass().getName(), path
.toString()));
}
if (info.rootNodePosition <= 0 && info.rootNodePosition > relativePathLength) {
throw new SemanticResourceException(SemanticResourceStatusCode.FEDERATION_INVALID_ROOT_NODE_POSITION, path, NLS.bind(
- Messages.SemanticFileStore_FederatingContentProviderReturnedInvalidRootNodePosition, parentProvider.getClass()
+ Messages.SemanticFileStore_FederatingContentProviderReturnedInvalidRootNodePosition_XMSG, parentProvider.getClass()
.getName(), path.toString()));
}
diff --git a/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/messages.properties b/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/messages.properties
index e8dd6e9..ebc933d 100644
--- a/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/messages.properties
+++ b/bundles/org.eclipse.core.resources.semantic/src/org/eclipse/core/internal/resources/semantic/messages.properties
@@ -22,8 +22,8 @@ SemanticFileStore_AppendingInfo_XMSG=Appending output stream on provider {0} for
SemanticFileStore_CreateFileRemote_XMSG=Creating file {0} remotely on provider {1} for path {2}
SemanticFileStore_CreateResourceRemtoe_XMSG=Creating resource {0} remotely on provider {1} for path {2}
SemanticFileStore_DeleteResourceRemote_XMSG=Deleting resource {0} remotely on provider {1}
-SemanticFileStore_FederatingContentProviderReturnedInvalidRootNodePosition=Federating content provider {0} returned invalid root node position for federated content provider for path {1}
-SemanticFileStore_FederatingContentProviderReturnedNull=Federating content provider {0} returned null as federated content provider ID for path {1}
+SemanticFileStore_FederatingContentProviderReturnedInvalidRootNodePosition_XMSG=Federating content provider {0} returned invalid root node position for federated content provider for path {1}
+SemanticFileStore_FederatingContentProviderReturnedNull_XMSG=Federating content provider {0} returned null as federated content provider ID for path {1}
SemanticFileStore_IntefaceNotImplemented_XMSG=Content provider {0} does not implement inteface {1}
SemanticFileStore_InvalidURISyntax_XMSG=Invalid URI syntax {0}
SemanticFileStore_Locking_XMSG=Locking resource {0} on provider {1}

Back to the top