#ifndef __XmlSchemaAll_H__ #define __XmlSchemaAll_H__ /* XmlSchemaAll represents the structure of a Dictionary Content: (annotation?, element*) */ #import "XmlSchemaContent.h" @class NSMutableDictionary; @interface XmlSchemaAll : XmlSchemaContent { // maxOccurs is @"1" NSString *minOccurs; NSMutableDictionary *elements; } /* attributes */ - (NSString *)maxOccurs; - (NSString *)minOccurs; /* elements */ - (NSArray *)elementNames; - (id)elementWithName:(NSString *)_key; @end #endif /* __XmlSchemaAll_H__ */