00001
00002
00003
00004
00005
00006
00007 #import "NSMutableArray.h"
00008
00009 @interface NSXMLChildren : NSMutableArray
00010 {
00011 NSMutableArray *_array;
00012 BOOL _isStale;
00013 }
00014
00015 - (void)dealloc;
00016 - (id)init;
00017 - (id)initWithArray:(id)fp8;
00018 - (unsigned int)count;
00019 - (id)objectAtIndex:(unsigned int)fp8;
00020 - (void)addObject:(id)fp8;
00021 - (void)insertObject:(id)fp8 atIndex:(unsigned int)fp12;
00022 - (void)removeLastObject;
00023 - (void)removeObjectAtIndex:(unsigned int)fp8;
00024 - (void)replaceObjectAtIndex:(unsigned int)fp8 withObject:(id)fp12;
00025 - (void)addObjectsFromArray:(id)fp8;
00026 - (void)exchangeObjectAtIndex:(unsigned int)fp8 withObjectAtIndex:(unsigned int)fp12;
00027 - (void)removeAllObjects;
00028 - (void)removeObject:(id)fp8 inRange:(struct _NSRange)fp12;
00029 - (void)removeObject:(id)fp8;
00030 - (void)removeObjectIdenticalTo:(id)fp8 inRange:(struct _NSRange)fp12;
00031 - (void)removeObjectIdenticalTo:(id)fp8;
00032 - (void)removeObjectsFromIndices:(unsigned int *)fp8 numIndices:(unsigned int)fp12;
00033 - (void)removeObjectsInArray:(id)fp8;
00034 - (void)removeObjectsInRange:(struct _NSRange)fp8;
00035 - (void)replaceObjectsInRange:(struct _NSRange)fp8 withObjectsFromArray:(id)fp16 range:(struct _NSRange)fp20;
00036 - (void)replaceObjectsInRange:(struct _NSRange)fp8 withObjectsFromArray:(id)fp16;
00037 - (void)setArray:(id)fp8;
00038 - (void)sortUsingFunction:(void *)fp8 context:(void *)fp12;
00039 - (void)sortUsingSelector:(SEL)fp8;
00040 - (void)insertObjects:(id)fp8 atIndexes:(id)fp12;
00041 - (void)removeObjectsAtIndexes:(id)fp8;
00042 - (void)replaceObjectsAtIndexes:(id)fp8 withObjects:(id)fp12;
00043 - (id)reallyAddObject:(id)fp8;
00044 - (id)reallyInsertObject:(id)fp8 atIndex:(unsigned int)fp12;
00045 - (id)reallyRemoveObjectAtIndex:(unsigned int)fp8;
00046 - (id)reallyReplaceObjectAtIndex:(unsigned int)fp8 withObject:(id)fp12;
00047 - (id)reallyRemoveObject:(id)fp8;
00048 - (id)reallyRemoveAllObjects;
00049 - (void)makeStale;
00050
00051 @end
00052