aboutsummaryrefslogtreecommitdiff
path: root/jimfs/src/main
diff options
context:
space:
mode:
authorColin Decker <cgdecker@google.com>2014-01-22 15:29:44 -0800
committerColin Decker <cgdecker@google.com>2014-01-22 15:29:44 -0800
commit68a70f4dcce1122311ef42fdee317e03e494cd75 (patch)
tree3d19f0db5cfe9a18b5c3228d9ffd039dc43b7109 /jimfs/src/main
parent65b50e08ca79dcf145a4397ec0522f7904e2621b (diff)
downloadjimfs-68a70f4dcce1122311ef42fdee317e03e494cd75.tar.gz
Change name case from JimFS to Jimfs.
Diffstat (limited to 'jimfs/src/main')
-rw-r--r--jimfs/src/main/java/com/google/jimfs/Jimfs.java4
-rw-r--r--jimfs/src/main/java/com/google/jimfs/JimfsFileSystem.java2
-rw-r--r--jimfs/src/main/java/com/google/jimfs/JimfsFileSystemProvider.java4
-rw-r--r--jimfs/src/main/java/com/google/jimfs/JimfsPath.java2
-rw-r--r--jimfs/src/main/java/com/google/jimfs/JimfsSecureDirectoryStream.java2
-rw-r--r--jimfs/src/main/java/com/google/jimfs/PathNormalization.java2
-rw-r--r--jimfs/src/main/java/com/google/jimfs/StandardAttributeProviders.java2
-rw-r--r--jimfs/src/main/java/com/google/jimfs/WindowsPathType.java4
-rw-r--r--jimfs/src/main/java/com/google/jimfs/package-info.java2
9 files changed, 12 insertions, 12 deletions
diff --git a/jimfs/src/main/java/com/google/jimfs/Jimfs.java b/jimfs/src/main/java/com/google/jimfs/Jimfs.java
index ebc7ef7..31338c1 100644
--- a/jimfs/src/main/java/com/google/jimfs/Jimfs.java
+++ b/jimfs/src/main/java/com/google/jimfs/Jimfs.java
@@ -29,7 +29,7 @@ import java.nio.file.FileSystems;
import java.util.UUID;
/**
- * Static factory methods for creating new JimFS file systems. File systems may either be created
+ * Static factory methods for creating new Jimfs file systems. File systems may either be created
* with a basic configuration matching the current operating system or by providing a specific
* {@link Configuration}. Basic {@linkplain Configuration#unix() UNIX},
* {@linkplain Configuration#osX() Mac OS X} and {@linkplain Configuration#windows() Windows}
@@ -72,7 +72,7 @@ import java.util.UUID;
public final class Jimfs {
/**
- * The URI scheme for the JimFS file system ("jimfs").
+ * The URI scheme for the Jimfs file system ("jimfs").
*/
public static final String URI_SCHEME = "jimfs";
diff --git a/jimfs/src/main/java/com/google/jimfs/JimfsFileSystem.java b/jimfs/src/main/java/com/google/jimfs/JimfsFileSystem.java
index bd9f6d9..4cc488f 100644
--- a/jimfs/src/main/java/com/google/jimfs/JimfsFileSystem.java
+++ b/jimfs/src/main/java/com/google/jimfs/JimfsFileSystem.java
@@ -38,7 +38,7 @@ import java.util.concurrent.Executors;
import javax.annotation.Nullable;
/**
- * {@link FileSystem} implementation for JimFS. Most behavior for the file system is implemented
+ * {@link FileSystem} implementation for Jimfs. Most behavior for the file system is implemented
* by its {@linkplain #getDefaultView() default file system view}.
*
* <h3>Overview of file system design</h3>
diff --git a/jimfs/src/main/java/com/google/jimfs/JimfsFileSystemProvider.java b/jimfs/src/main/java/com/google/jimfs/JimfsFileSystemProvider.java
index 3ed75ea..6651965 100644
--- a/jimfs/src/main/java/com/google/jimfs/JimfsFileSystemProvider.java
+++ b/jimfs/src/main/java/com/google/jimfs/JimfsFileSystemProvider.java
@@ -57,7 +57,7 @@ import java.util.concurrent.ExecutorService;
import javax.annotation.Nullable;
/**
- * {@link FileSystemProvider} implementation for JimFS. While this class is public, it should not
+ * {@link FileSystemProvider} implementation for Jimfs. While this class is public, it should not
* be used directly. To create a new file system instance, see {@link Jimfs}. For other operations,
* use the public APIs in {@code java.nio.file}.
*
@@ -165,7 +165,7 @@ public final class JimfsFileSystemProvider extends FileSystemProvider {
return (JimfsPath) path;
}
throw new ProviderMismatchException(
- "path " + path + " is not associated with a JimFS file system");
+ "path " + path + " is not associated with a Jimfs file system");
}
/**
diff --git a/jimfs/src/main/java/com/google/jimfs/JimfsPath.java b/jimfs/src/main/java/com/google/jimfs/JimfsPath.java
index 1f419a2..a5cf298 100644
--- a/jimfs/src/main/java/com/google/jimfs/JimfsPath.java
+++ b/jimfs/src/main/java/com/google/jimfs/JimfsPath.java
@@ -46,7 +46,7 @@ import java.util.List;
import javax.annotation.Nullable;
/**
- * JimFS implementation of {@link Path}. Creation of new {@code Path} objects is delegated to the
+ * Jimfs implementation of {@link Path}. Creation of new {@code Path} objects is delegated to the
* file system's {@link PathService}.
*
* @author Colin Decker
diff --git a/jimfs/src/main/java/com/google/jimfs/JimfsSecureDirectoryStream.java b/jimfs/src/main/java/com/google/jimfs/JimfsSecureDirectoryStream.java
index 68d7c52..c543dc9 100644
--- a/jimfs/src/main/java/com/google/jimfs/JimfsSecureDirectoryStream.java
+++ b/jimfs/src/main/java/com/google/jimfs/JimfsSecureDirectoryStream.java
@@ -114,6 +114,6 @@ final class JimfsSecureDirectoryStream
return (JimfsPath) path;
}
throw new ProviderMismatchException(
- "path " + path + " is not associated with a JimFS file system");
+ "path " + path + " is not associated with a Jimfs file system");
}
}
diff --git a/jimfs/src/main/java/com/google/jimfs/PathNormalization.java b/jimfs/src/main/java/com/google/jimfs/PathNormalization.java
index 342b669..ee294ee 100644
--- a/jimfs/src/main/java/com/google/jimfs/PathNormalization.java
+++ b/jimfs/src/main/java/com/google/jimfs/PathNormalization.java
@@ -27,7 +27,7 @@ import java.util.regex.Pattern;
/**
* Normalizations that can be applied to names in paths. Includes Unicode normalizations and
* normalizations for case insensitive paths. These normalizations can be set in
- * {@code Configuration.Builder} when creating a JimFS file system instance and are automatically
+ * {@code Configuration.Builder} when creating a Jimfs file system instance and are automatically
* applied to paths in the file system.
*
* @author Colin Decker
diff --git a/jimfs/src/main/java/com/google/jimfs/StandardAttributeProviders.java b/jimfs/src/main/java/com/google/jimfs/StandardAttributeProviders.java
index a0730cb..bb9456d 100644
--- a/jimfs/src/main/java/com/google/jimfs/StandardAttributeProviders.java
+++ b/jimfs/src/main/java/com/google/jimfs/StandardAttributeProviders.java
@@ -22,7 +22,7 @@ import javax.annotation.Nullable;
/**
* Static registry of {@link AttributeProvider} implementations for the standard set of file
- * attribute views JimFS supports.
+ * attribute views Jimfs supports.
*
* <p>The supported views are:
*
diff --git a/jimfs/src/main/java/com/google/jimfs/WindowsPathType.java b/jimfs/src/main/java/com/google/jimfs/WindowsPathType.java
index d44e371..1dcafbb 100644
--- a/jimfs/src/main/java/com/google/jimfs/WindowsPathType.java
+++ b/jimfs/src/main/java/com/google/jimfs/WindowsPathType.java
@@ -67,7 +67,7 @@ final class WindowsPathType extends PathType {
path = path.replace('/', '\\');
if (WORKING_DIR_WITH_DRIVE.matcher(path).matches()) {
- throw new InvalidPathException(original, "JimFS does not currently support the Windows "
+ throw new InvalidPathException(original, "Jimfs does not currently support the Windows "
+ "syntax for a relative path on a specific drive (e.g. \"C:foo\\bar\"");
}
@@ -75,7 +75,7 @@ final class WindowsPathType extends PathType {
if (path.startsWith("\\\\")) {
root = parseUncRoot(path, original);
} else if (path.startsWith("\\")) {
- throw new InvalidPathException(original, "JimFS does not currently support the Windows "
+ throw new InvalidPathException(original, "Jimfs does not currently support the Windows "
+ "syntax for an absolute path on the current drive (e.g. \"\\foo\\bar\"");
} else {
root = parseDriveRoot(path);
diff --git a/jimfs/src/main/java/com/google/jimfs/package-info.java b/jimfs/src/main/java/com/google/jimfs/package-info.java
index 512c5c3..8637c41 100644
--- a/jimfs/src/main/java/com/google/jimfs/package-info.java
+++ b/jimfs/src/main/java/com/google/jimfs/package-info.java
@@ -15,7 +15,7 @@
*/
/**
- * Package containing the {@link com.google.jimfs.Jimfs Jimfs} class, used for creating new JimFS
+ * Package containing the {@link com.google.jimfs.Jimfs Jimfs} class, used for creating new Jimfs
* file systems.
*/
@ParametersAreNonnullByDefault