Interface FileFilter
-
- All Known Implementing Classes:
ApplesoftFileFilter,AppleWorksDataBaseFileFilter,AppleWorksSpreadSheetFileFilter,AppleWorksWordProcessorFileFilter,AssemblySourceFileFilter,BinaryFileFilter,BusinessBASICFileFilter,DisassemblyFileFilter,GraphicsFileFilter,GutenbergFileFilter,HexDumpFileFilter,IntegerBasicFileFilter,PascalTextFileFilter,ShapeTableFileFilter,TextFileFilter
public interface FileFilterA file filter takes a buffer of bytes and filters or converts the bytes into another format. An example would be to filter Apple text by removing the high bit from each byte and stripping out all $00 values, as that signified either the end of a file or filler space.Date created: Nov 2, 2002 9:02:47 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]filter(FileEntry fileEntry)Process the given FileEntry and return a byte array with filtered data.java.lang.StringgetSuggestedFileName(FileEntry fileEntry)Give suggested file name.
-