Ejemplo n.º 1
0
 public TopicBuilder(SchemaSetManager schemaSetManager,
                     Dictionary <string, Topic> namespaceTopics,
                     Dictionary <XmlSchemaObject, Topic> topicDictionary)
     : this()
 {
     _schemaSetManager = schemaSetManager;
     _namespaceTopics  = namespaceTopics;
     _topicDictionary  = topicDictionary;
 }
Ejemplo n.º 2
0
 public NamespaceContentFinder(SchemaSetManager schemaSetManager, string targetNamespace)
 {
     _schemaSetManager = schemaSetManager;
     _targetNamespace  = targetNamespace;
     ComplexTypes      = new List <XmlSchemaObject>();
     SimpleTypes       = new List <XmlSchemaObject>();
     AttributeGroups   = new List <XmlSchemaObject>();
     Groups            = new List <XmlSchemaObject>();
     Elements          = new List <XmlSchemaObject>();
     Attributes        = new List <XmlSchemaObject>();
     Schemas           = new List <XmlSchemaObject>();
 }
 public NamespaceContentFinder(SchemaSetManager schemaSetManager, string targetNamespace)
 {
     _schemaSetManager = schemaSetManager;
     _targetNamespace = targetNamespace;
     ComplexTypes = new List<XmlSchemaObject>();
     SimpleTypes = new List<XmlSchemaObject>();
     AttributeGroups = new List<XmlSchemaObject>();
     Groups = new List<XmlSchemaObject>();
     Elements = new List<XmlSchemaObject>();
     Attributes = new List<XmlSchemaObject>();
     Schemas = new List<XmlSchemaObject>();
 }
Ejemplo n.º 4
0
        public Context(IMessageReporter messageReporter, Configuration configuration)
        {
            ProblemReporter = new ProblemReporter(messageReporter);
            Configuration   = configuration;

            SchemaSetManager = new SchemaSetManager(this);
            SchemaSetManager.Initialize();

            SourceCodeManager = new SourceCodeManager(this);
            SourceCodeManager.Initialize();

            TopicManager = new TopicManager(this);
            TopicManager.Initialize();

            DocumentationManager = new DocumentationManager(this);
            DocumentationManager.Initialize();
        }
Ejemplo n.º 5
0
        public Context(IMessageReporter messageReporter, Configuration configuration)
        {
            ProblemReporter = new ProblemReporter(messageReporter);
            Configuration = configuration;

            SchemaSetManager = new SchemaSetManager(this);
            SchemaSetManager.Initialize();

            SourceCodeManager = new SourceCodeManager(this);
            SourceCodeManager.Initialize();

            TopicManager = new TopicManager(this);
            TopicManager.Initialize();

            DocumentationManager = new DocumentationManager(this);
            DocumentationManager.Initialize();
        }
Ejemplo n.º 6
0
 public AttributeFinder(SchemaSetManager schemaSetManager)
 {
     _schemaSetManager = schemaSetManager;
 }
Ejemplo n.º 7
0
 public AttributeFinder(SchemaSetManager schemaSetManager)
 {
     _schemaSetManager = schemaSetManager;
 }
Ejemplo n.º 8
0
 public TopicBuilder(SchemaSetManager schemaSetManager, Dictionary<string, Topic> namespaceTopics, Dictionary<XmlSchemaObject, Topic> topicDictionary)
 {
     _schemaSetManager = schemaSetManager;
     _namespaceTopics = namespaceTopics;
     _topicDictionary = topicDictionary;
 }
Ejemplo n.º 9
0
 public ChildrenFinder(SchemaSetManager schemaSetManager)
 {
     _schemaSetManager = schemaSetManager;
 }
Ejemplo n.º 10
0
 public ChildrenFinder(SchemaSetManager schemaSetManager)
 {
     _schemaSetManager = schemaSetManager;
 }