TMI-IFF: Updated documentation/description.

This commit is contained in:
Harald Kuhr 2013-10-31 13:48:47 +01:00
parent a5e6346647
commit 51f0b20bb0
4 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ import java.util.Iterator;
import java.util.List; import java.util.List;
/** /**
* Reader for Amiga (Electronic Arts) IFF ILBM (InterLeaved BitMap) and PBM * Reader for Commodore Amiga (Electronic Arts) IFF ILBM (InterLeaved BitMap) and PBM
* format (Packed BitMap). * format (Packed BitMap).
* The IFF format (Interchange File Format) is the standard file format * The IFF format (Interchange File Format) is the standard file format
* supported by allmost all image software for the Amiga computer. * supported by allmost all image software for the Amiga computer.

View File

@ -108,7 +108,7 @@ public class IFFImageReaderSpi extends ImageReaderSpi {
} }
public String getDescription(Locale pLocale) { public String getDescription(Locale pLocale) {
return "Amiga (Electronic Arts) Image Interchange Format (IFF) image reader"; return "Commodore Amiga/Electronic Arts Image Interchange Format (IFF) image reader";
} }
public static ImageReaderSpi sharedProvider() { public static ImageReaderSpi sharedProvider() {

View File

@ -45,7 +45,7 @@ import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;
/** /**
* Writer for Amiga (Electronic Arts) IFF ILBM (InterLeaved BitMap) format. * Writer for Commodore Amiga (Electronic Arts) IFF ILBM (InterLeaved BitMap) format.
* The IFF format (Interchange File Format) is the standard file format * The IFF format (Interchange File Format) is the standard file format
* supported by almost all image software for the Amiga computer. * supported by almost all image software for the Amiga computer.
* <p/> * <p/>

View File

@ -79,6 +79,6 @@ public class IFFImageWriterSpi extends ImageWriterSpi {
} }
public String getDescription(Locale pLocale) { public String getDescription(Locale pLocale) {
return "Amiga (Electronic Arts) IFF image writer"; return "Commodore Amiga/Electronic Arts Image Interchange Format (IFF) image writer";
} }
} }