Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-03-08 11:18:20 +0000
committerMarkus Keller2016-03-08 11:18:20 +0000
commit35e6af060d4134f419dae1daf692d3f7706ec0d8 (patch)
tree4b7b20af5b0466472cc773f768d49d39f3f24a5f /org.eclipse.core.filebuffers
parentf987e0dc3a11faa8cce0d13c897e88255accb159 (diff)
downloadeclipse.platform.text-35e6af060d4134f419dae1daf692d3f7706ec0d8.tar.gz
eclipse.platform.text-35e6af060d4134f419dae1daf692d3f7706ec0d8.tar.xz
eclipse.platform.text-35e6af060d4134f419dae1daf692d3f7706ec0d8.zip
Bug 489202: Document more restrictions of using IFileStore (bad encoding)Y20160310-0830Y20160310-0800I20160308-0800
Diffstat (limited to 'org.eclipse.core.filebuffers')
-rw-r--r--org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java9
-rw-r--r--org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ITextFileBufferManager.java3
2 files changed, 8 insertions, 4 deletions
diff --git a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java
index a90c5f4812f..b1638e5d3d2 100644
--- a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java
+++ b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java
@@ -81,7 +81,8 @@ public interface IFileBufferManager {
* <p>
* <strong>Note:</strong> This API must not be used if the given file
* store maps to a resource contained in the workspace. A file buffer
- * that has been connected using a path will not be found.
+ * that has been connected using a path will not be found. The encoding
+ * of the file in the workspace will not be considered.
* </p>
* <p>
* We had to use a different name than <code>connect</code> for this method
@@ -139,7 +140,8 @@ public interface IFileBufferManager {
* <p>
* <strong>Note:</strong> This API must not be used if the given file
* store maps to a resource contained in the workspace. A file buffer
- * that has been connected using a path will not be found.
+ * that has been connected using a path will not be found. The encoding
+ * of the file in the workspace will not be considered.
* </p>
* <p>
* We had to use a different name than <code>disconnect</code> for this method
@@ -192,7 +194,8 @@ public interface IFileBufferManager {
* <p>
* <strong>Note:</strong> This API must not be used if the given file
* store maps to a resource contained in the workspace. A file buffer
- * that has been connected using a path will not be found.
+ * that has been connected using a path will not be found. The encoding
+ * of the file in the workspace will not be considered.
* </p>
* <p>
* We had to use a different name than <code>getFileBuffer</code> for this method
diff --git a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ITextFileBufferManager.java b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ITextFileBufferManager.java
index fcf3a5463d6..2c315c478df 100644
--- a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ITextFileBufferManager.java
+++ b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ITextFileBufferManager.java
@@ -78,7 +78,8 @@ public interface ITextFileBufferManager extends IFileBufferManager {
* <p>
* <strong>Note:</strong> This API must not be used if the given file
* store maps to a resource contained in the workspace. A file buffer
- * that has been connected using a path will not be found.
+ * that has been connected using a path will not be found. The encoding
+ * of the file in the workspace will not be considered.
* </p>
* <p>
* We had to use a different name than <code>getTextFileBuffer</code> for this method

Back to the top