6ddc6e398c1e877e37a2e61594a9bb9f6703909a
[mono.git] / mcs / class / System.Runtime.Serialization / System.Runtime.Serialization / ImportOptions.cs
1 //
2 // ImportOptions.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.CodeDom.Compiler;
30 using System.Collections.Generic;
31
32 namespace System.Runtime.Serialization
33 {
34         public class ImportOptions
35         {
36                 IDataContractSurrogate surrogate;
37                 ICollection<Type> referenced_collection_types =
38                         new List<Type> ();
39                 ICollection<Type> referenced_types = new List<Type> ();
40                 bool enable_data_binding;
41                 bool generate_internal;
42                 bool generate_serializable;
43                 bool import_xml_type;
44                 IDictionary<string, string> namespaces =
45                         new Dictionary<string, string> ();
46                 CodeDomProvider code_provider;
47
48                 public ImportOptions ()
49                 {
50                 }
51
52                 public CodeDomProvider CodeProvider {
53                         get { return code_provider; }
54                         set { code_provider = value; }
55                 }
56
57                 [MonoTODO]
58                 public IDataContractSurrogate DataContractSurrogate {
59                         get { return surrogate; }
60                         set { surrogate = value; }
61                 }
62
63                 [MonoTODO]
64                 public bool EnableDataBinding {
65                         get { return enable_data_binding; }
66                         set { enable_data_binding = value; }
67                 }
68
69                 public bool GenerateInternal {
70                         get { return generate_internal; }
71                         set { generate_internal = value; }
72                 }
73
74                 public bool GenerateSerializable {
75                         get { return generate_serializable; }
76                         set { generate_serializable = value; }
77                 }
78
79                 [MonoTODO]
80                 public bool ImportXmlType {
81                         get { return import_xml_type; }
82                         set { import_xml_type = value; }
83                 }
84
85                 public IDictionary<string, string> Namespaces {
86                         get { return namespaces; }
87                 }
88
89                 [MonoTODO]
90                 public ICollection<Type> ReferencedCollectionTypes {
91                         get { return referenced_collection_types; }
92                 }
93
94                 [MonoTODO]
95                 public ICollection<Type> ReferencedTypes {
96                         get { return referenced_types; }
97                 }
98         }
99 }
100