Package apple.modelio.protocol
Interface MDLObjectContainerComponent
-
- All Superinterfaces:
MDLComponent,NSFastEnumeration
- All Known Implementing Classes:
MDLObjectContainer
public interface MDLObjectContainerComponent extends MDLComponent, NSFastEnumeration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddObject(MDLObject object)longcount()MDLObjectobjectAtIndexedSubscript(long index)NSArray<? extends MDLObject>objects()returns an array of this object's contained objects, aka childrenvoidremoveObject(MDLObject object)-
Methods inherited from interface apple.foundation.protocol.NSFastEnumeration
countByEnumeratingWithStateObjectsCount
-
-
-
-
Method Detail
-
addObject
void addObject(MDLObject object)
-
objects
NSArray<? extends MDLObject> objects()
returns an array of this object's contained objects, aka children
-
removeObject
void removeObject(MDLObject object)
-
count
long count()
-
objectAtIndexedSubscript
MDLObject objectAtIndexedSubscript(long index)
-
-