62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
- (void)setModificationDate: (OFDate *)modificationDate
{
OFDate *old = _modificationDate;
_modificationDate = [modificationDate retain];
[old release];
}
- (void)setType: (of_tar_archive_entry_type_t)type
{
_type = type;
}
- (void)setTargetFileName: (OFString *)targetFileName
{
OFString *old = _targetFileName;
|
|
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
- (void)setModificationDate: (OFDate *)modificationDate
{
OFDate *old = _modificationDate;
_modificationDate = [modificationDate retain];
[old release];
}
- (void)setType: (OFTarArchiveEntryType)type
{
_type = type;
}
- (void)setTargetFileName: (OFString *)targetFileName
{
OFString *old = _targetFileName;
|