Class IconExe.FileFormat
- java.lang.Object
-
- org.eclipse.pde.internal.swt.tools.IconExe.FileFormat
-
- Direct Known Subclasses:
IconExe.WinBMPFileFormat
,IconExe.WinICOFileFormat
- Enclosing class:
- IconExe
public abstract static class IconExe.FileFormat extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
compression
(package private) IconExe.LEDataInputStream
inputStream
(package private) IconExe.ImageLoader
loader
-
Constructor Summary
Constructors Constructor Description FileFormat()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) byte[]
bitInvertData(byte[] data, int startIndex, int endIndex)
(package private) abstract boolean
isFileFormat(IconExe.LEDataInputStream stream)
Return whether or not the specified input stream represents a supported file format.static IconExe.ImageData[]
load(java.io.InputStream is, IconExe.ImageLoader loader)
(package private) abstract IconExe.ImageData[]
loadFromByteStream()
IconExe.ImageData[]
loadFromStream(IconExe.LEDataInputStream stream)
-
-
-
Field Detail
-
inputStream
IconExe.LEDataInputStream inputStream
-
loader
IconExe.ImageLoader loader
-
compression
int compression
-
-
Method Detail
-
bitInvertData
byte[] bitInvertData(byte[] data, int startIndex, int endIndex)
-
isFileFormat
abstract boolean isFileFormat(IconExe.LEDataInputStream stream)
Return whether or not the specified input stream represents a supported file format.
-
loadFromByteStream
abstract IconExe.ImageData[] loadFromByteStream()
-
loadFromStream
public IconExe.ImageData[] loadFromStream(IconExe.LEDataInputStream stream)
-
load
public static IconExe.ImageData[] load(java.io.InputStream is, IconExe.ImageLoader loader)
-
-