FTObject.h




Functions

encodeWithCoder:
Is being called in order to serialize this instance
initWithCode
initializer called by deserialization process
initWithCoder:
initializer called by deserialization process

encodeWithCoder:


Is being called in order to serialize this instance

- (
        void) encodeWithCoder: (
        NSCoder *) encoder; 
Parameter Descriptions
encoder
object to be used for serialization

initWithCode


initializer called by deserialization process

- (
        id) initWithCoder:(
        NSCoder *) decoder; 
Parameter Descriptions
decoder
to use
function result
self

initWithCoder:


initializer called by deserialization process

- (
        id) initWithCoder:(
        NSCoder *) decoder; 
Parameter Descriptions
decoder
to use
function result
self

(Last Updated August 27, 2006)