flush
[mcs.git] / class / System.Design / System.Resources.Tools / StronglyTypedResourceBuilder.cs
blob4af4eafb368c55a18b070fec7d16ea74abafab20
1 //
2 // StronglyTypedResourceBuilder.cs
3 //
4 // Author:
5 // Atsushi Enomoto (atsushi@ximian.com)
6 //
7 // Copyright (C) 2007 Novell, Inc.
8 //
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.
31 #if NET_2_0
33 using System.CodeDom;
34 using System.CodeDom.Compiler;
35 using System.Collections;
36 using System.ComponentModel.Design;
38 namespace System.Resources.Tools
40 public static class StronglyTypedResourceBuilder
42 [MonoTODO]
43 public static CodeCompileUnit Create (string resxFile,
44 string baseName,
45 string generatedCodeNamespace,
46 CodeDomProvider codeProvider, bool internalClass,
47 out string [] unmatchable)
49 throw new NotImplementedException ();
52 [MonoTODO]
53 public static CodeCompileUnit Create (string resxFile,
54 string baseName,
55 string generatedCodeNamespace,
56 string resourcesNamespace,
57 CodeDomProvider codeProvider, bool internalClass,
58 out string [] unmatchable)
60 throw new NotImplementedException ();
63 [MonoTODO]
64 public static CodeCompileUnit Create (IDictionary resourceList,
65 string baseName,
66 string generatedCodeNamespace,
67 CodeDomProvider codeProvider, bool internalClass,
68 out string [] unmatchable)
70 throw new NotImplementedException ();
73 [MonoTODO]
74 public static CodeCompileUnit Create (IDictionary resourceList,
75 string baseName,
76 string generatedCodeNamespace,
77 string resourcesNamespace,
78 CodeDomProvider codeProvider, bool internalClass,
79 out string [] unmatchable)
81 throw new NotImplementedException ();
84 [MonoTODO]
85 public static string VerifyResourceName (string key, CodeDomProvider provider)
87 throw new NotImplementedException ();
92 #endif