~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Projects/MonoDevelop.Projects.Dom/SearchTypeRequest.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// IParserContext.cs
 
3
//
 
4
// Author:
 
5
//   Mike Krüger <mkrueger@novell.com>
 
6
//
 
7
// Copyright (C) 2008 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;
 
30
using System.Collections.Generic;
 
31
 
 
32
namespace MonoDevelop.Projects.Dom
 
33
{
 
34
        public class SearchTypeRequest
 
35
        {
 
36
                string name;
 
37
                List<IReturnType> genericParameters;
 
38
                ICompilationUnit currentCompilationUnit;
 
39
                int    caretLine, caretColumn;
 
40
                bool   caseSensitive = true;
 
41
                IType  callingType;
 
42
                
 
43
                public string Name {
 
44
                        get {
 
45
                                return name;
 
46
                        }
 
47
                        set {
 
48
                                name = value;
 
49
                        }
 
50
                }
 
51
                
 
52
                public ICompilationUnit CurrentCompilationUnit {
 
53
                        get {
 
54
                                return currentCompilationUnit;
 
55
                        }
 
56
                }
 
57
                
 
58
                public int CaretLine {
 
59
                        get {
 
60
                                return caretLine;
 
61
                        }
 
62
                }
 
63
                
 
64
                public int CaretColumn {
 
65
                        get {
 
66
                                return caretColumn;
 
67
                        }
 
68
                }
 
69
 
 
70
                public bool CaseSensitive {
 
71
                        get {
 
72
                                return caseSensitive;
 
73
                        }
 
74
                        set {
 
75
                                caseSensitive = value;
 
76
                        }
 
77
                }
 
78
 
 
79
                public IType CallingType {
 
80
                        get {
 
81
                                return callingType;
 
82
                        }
 
83
                        set {
 
84
                                callingType = value;
 
85
                        }
 
86
                }
 
87
 
 
88
                public List<IReturnType> GenericParameters {
 
89
                        get {
 
90
                                return genericParameters;
 
91
                        }
 
92
                }
 
93
                
 
94
                public SearchTypeRequest (ICompilationUnit currentCompilationUnit)
 
95
                {
 
96
                        this.currentCompilationUnit = currentCompilationUnit;
 
97
                        this.caretLine   = -1;
 
98
                        this.caretColumn = -1;
 
99
                //      this.genericParameterCount = -1;
 
100
                }
 
101
                
 
102
                public SearchTypeRequest (ICompilationUnit currentCompilationUnit, string name)
 
103
                {
 
104
                        this.currentCompilationUnit = currentCompilationUnit;
 
105
                        this.caretLine   = -1;
 
106
                        this.caretColumn = -1;
 
107
                        this.name        = name;
 
108
                //      this.genericParameterCount = -1;
 
109
                }
 
110
                
 
111
                public SearchTypeRequest (ICompilationUnit currentCompilationUnit, IReturnType rtype, IType callingType)
 
112
                {
 
113
                        this.currentCompilationUnit = currentCompilationUnit;
 
114
                        this.callingType = callingType;
 
115
                        this.caretLine   = -1;
 
116
                        this.caretColumn = -1;
 
117
                        if (rtype != null) {
 
118
                                name = rtype.Namespace;
 
119
                                foreach (ReturnTypePart rpart in rtype.Parts) {
 
120
                                        if (name.Length > 0)
 
121
                                                name += ".";
 
122
                                        name += rpart.Name;
 
123
                                        if (rpart.GenericArguments.Count > 0)
 
124
                                                name += "`" + rpart.GenericArguments.Count;
 
125
                                }
 
126
                                this.genericParameters = new List<IReturnType> (rtype.GenericArguments);
 
127
                        }
 
128
                }
 
129
                
 
130
                public SearchTypeRequest (ICompilationUnit currentCompilationUnit, int caretLine, int caretColumn, string name)
 
131
                {
 
132
                        this.currentCompilationUnit = currentCompilationUnit;
 
133
                        this.caretLine   = caretLine;
 
134
                        this.caretColumn = caretColumn;
 
135
                        this.name        = name;
 
136
                //      this.genericParameterCount = -1;
 
137
                }
 
138
                
 
139
                public SearchTypeRequest (ICompilationUnit currentCompilationUnit, IType callingType, string name)
 
140
                {
 
141
                        this.currentCompilationUnit = currentCompilationUnit;
 
142
                        this.callingType = callingType;
 
143
                        this.name        = name;
 
144
                //      this.genericParameterCount = -1;
 
145
                }
 
146
                
 
147
                public SearchTypeRequest (ICompilationUnit currentCompilationUnit, int caretLine, int caretColumn, string name, List<IReturnType> genericParameters)
 
148
                {
 
149
                        this.currentCompilationUnit = currentCompilationUnit;
 
150
                        this.caretLine   = caretLine;
 
151
                        this.caretColumn = caretColumn;
 
152
                        this.name        = name;
 
153
                        this.genericParameters = genericParameters;
 
154
                }
 
155
                
 
156
        }
 
157
        
 
158
        public class SearchTypeResult 
 
159
        {
 
160
                IReturnType result;
 
161
                
 
162
                public IReturnType Result {
 
163
                        get {
 
164
                                return result;
 
165
                        }
 
166
                }
 
167
                
 
168
                public SearchTypeResult (IType type)
 
169
                {
 
170
                        this.result = new DomReturnType (type.FullName);
 
171
                }
 
172
                
 
173
                public SearchTypeResult (IReturnType result)
 
174
                {
 
175
                        this.result = result;
 
176
                }
 
177
                
 
178
                public override string ToString ()
 
179
                {
 
180
                        return string.Format ("[SearchTypeResult: Result={0}]", Result);
 
181
                }
 
182
        }
 
183
}