* ThemeDirectoryCompiler.jvm.cs: implemented GetCompiledInstance
[mono.git] / mcs / class / System.Web / System.Web.Compilation / Location.cs
1 //
2 // System.Web.Compilation.Location
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
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 namespace System.Web.Compilation
32 {
33         class Location : ILocation
34         {
35                 int beginLine, endLine, beginColumn, endColumn;
36                 string fileName, plainText;
37
38                 public Location (ILocation location)
39                 {
40                         Init (location);
41                 }
42
43                 public void Init (ILocation location)
44                 {
45                         if (location == null) {
46                                 beginLine = 0;
47                                 endLine = 0;
48                                 beginColumn = 0;
49                                 endColumn = 0;
50                                 fileName = null;
51                                 plainText = null;
52                         } else {
53                                 beginLine = location.BeginLine;
54                                 endLine = location.EndLine;
55                                 beginColumn = location.BeginColumn;
56                                 endColumn = location.EndColumn;
57                                 fileName = location.Filename;
58                                 plainText = location.PlainText;
59                         }
60                 }
61
62                 public string Filename {
63                         get { return fileName; }
64                         set { fileName = value; }
65                 }
66
67                 public int BeginLine {
68                         get { return beginLine; }
69                         set { beginLine = value; }
70                 }
71
72                 public int EndLine {
73                         get { return endLine; }
74                         set { endLine = value; }
75                 }
76
77                 public int BeginColumn {
78                         get { return beginColumn; }
79                         set { beginColumn = value; }
80                 }
81
82                 public int EndColumn {
83                         get { return endColumn; }
84                         set { endColumn = value; }
85                 }
86
87                 public string PlainText {
88                         get { return plainText; }
89                         set { plainText = value; }
90                 }
91         }
92 }
93