316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
-
+
|
* scheme
* @throw OFNotImplementedException Getting extended attributes is not
* implemented for the specified item
*/
- (OFData *)extendedAttributeDataForName: (OFString *)name
ofItemAtIRI: (OFIRI *)IRI
OF_DEPRECATED(ObjFW, 1, 1,
"Use -[getExtendedAttributeData:andType:forName:ofItemAtIRI:] instead");
"Use -[getExtendedAttributeData:andType:forName:ofItemAtIRI:] instead");
/**
* @brief Gets the extended attribute data and type for the specified name
* of the item at the specified IRI.
*
* This method is not available for all IRIs.
*
|
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
|
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
|
-
+
|
* @throw OFNotImplementedException Setting extended attributes is not
* implemented for the specified item
*/
- (void)setExtendedAttributeData: (OFData *)data
forName: (OFString *)name
ofItemAtIRI: (OFIRI *)IRI
OF_DEPRECATED(ObjFW, 1, 1,
"Use -[setExtendedAttributeData:andType:forName:ofItemAtIRI:] instead");
"Use -[setExtendedAttributeData:andType:forName:ofItemAtIRI:] instead");
/**
* @brief Sets the extended attribute data and type for the specified name of
* the item at the specified IRI.
*
* This method is not available for all IRIs.
* Not all IRIs support a non-nil type.
|