appleDouble |
An autoreleased empty GMAppleDouble file
+ (GMAppleDouble *)appleDouble;
appleDoubleWithData: |
An autoreleased GMAppleDouble file.
+ (GMAppleDouble *)appleDoubleWithData:(NSData *)data;
data
The GMAppleDouble is pre-filled with entries from the raw AppleDouble file data.
addEntry: |
Adds an entry to the AppleDouble file.
- (void)addEntry:(GMAppleDoubleEntry *)entry;
entry
addEntryWithID:data: |
Adds an entry to the AppleDouble file with ID and data.
- (void)addEntryWithID:(GMAppleDoubleEntryID)entryID data:(NSData *)data;
entryID
data
addEntriesFromAppleDoubleData: |
Adds entries based on the provided raw AppleDouble file data.
- (BOOL)addEntriesFromAppleDoubleData:(NSData *)data;
data
data
YES if the provided data was parsed correctly.
This will attempt to parse the given data as an AppleDouble file and add all entries found.
entries |
The set of GMAppleDoubleEntry present in this GMAppleDouble.
- (NSArray *)entries;
An array of GMAppleDoubleEntry.
data |
Constructs raw data for the AppleDouble file.
- (NSData *)data;
The raw data for an AppleDouble file represented by this GMAppleDouble.
Last Updated: Monday, November 17, 2008