Revert "[system.xml] System.Xml.Serialization.Advanced from reference sources"
[mono.git] / mcs / class / System.XML / System.Xml.Serialization.Advanced / SchemaImporterExtension.cs
1 // 
2 // System.Xml.Serialization.SchemaImporterExtension.cs 
3 //
4 // Author:
5 //   Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // Copyright (C) Novell, Inc., 2004
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31
32 using System;
33 using System.CodeDom;
34 using System.CodeDom.Compiler;
35 using System.Collections;
36 using System.Collections.Specialized;
37 using System.Xml.Schema;
38
39 namespace System.Xml.Serialization.Advanced
40 {
41         public abstract class SchemaImporterExtension
42         {
43                 protected SchemaImporterExtension ()
44                 {
45                 }
46
47                 public virtual string ImportAnyElement (
48                         XmlSchemaAny any, 
49                         bool mixed, 
50                         XmlSchemas schemas, 
51                         XmlSchemaImporter importer, 
52                         CodeCompileUnit compileUnit, 
53                         CodeNamespace mainNamespace, 
54                         CodeGenerationOptions options, 
55                         CodeDomProvider codeProvider
56                 )
57                 {
58                         return null;
59                 }
60                 
61                 public virtual CodeExpression ImportDefaultValue (string value, string type)
62                 {
63                         return null;
64                 }
65                 
66                 public virtual string ImportSchemaType (
67                         XmlSchemaType type, 
68                         XmlSchemaObject context, 
69                         XmlSchemas schemas, 
70                         XmlSchemaImporter importer, 
71                         CodeCompileUnit compileUnit, 
72                         CodeNamespace mainNamespace, 
73                         CodeGenerationOptions options, 
74                         CodeDomProvider codeProvider
75                 )
76                 {
77                         return null;
78                 }
79                 
80                 public virtual string ImportSchemaType (
81                         string name, 
82                         string ns, 
83                         XmlSchemaObject context, 
84                         XmlSchemas schemas, 
85                         XmlSchemaImporter importer, 
86                         CodeCompileUnit compileUnit, 
87                         CodeNamespace mainNamespace, 
88                         CodeGenerationOptions options, 
89                         CodeDomProvider codeProvider
90                 )
91                 {
92                         return null;
93                 }
94         }
95 }
96