Use Java capitalization conventions


git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@357 632fc199-4ca6-4c93-a231-07263d6284db
diff --git a/java/README b/java/README
index 8b6f5bc..0146ed3 100644
--- a/java/README
+++ b/java/README
@@ -4,12 +4,12 @@
 TurboJPEG/OSS can optionally be built with a Java Native Interface wrapper,
 which allows the TurboJPEG/OSS dynamic library to be loaded and used directly
 from Java applications.  The Java front end for this is defined in
-turbojpeg.java, which should be located in the same directory as this README
-file.  turbojpeg.java is licensed under a BSD-style license, so it can be
+TurboJPEG.java, which should be located in the same directory as this README
+file.  TurboJPEG.java is licensed under a BSD-style license, so it can be
 incorporated directly into both open source and proprietary projects without
 restriction.
 
-tjexample.java, which should also be located in the same directory as this
+TJExample.java, which should also be located in the same directory as this
 README file, demonstrates how to use the TurboJPEG/OSS Java front end to
 compress and decompress JPEG images in memory.
 
@@ -48,5 +48,5 @@
 Visual C++ versions of the libjpeg-turbo SDK are installed on the same system.
 However, the TurboJPEG/OSS JNI wrapper will not work on Windows unless the DLL
 is named turbojpeg.dll.  You can work around this by renaming the DLL or by
-simply changing the LoadLibrary() calls in turbojpeg.java so that they load
+simply changing the LoadLibrary() calls in TurboJPEG.java so that they load
 "libturbojpeg" instead of "turbojpeg".