Bug 15572. Lookup KnownTypeCollection element types in MSSimpleNamespace
[mono.git] / mcs / class / Microsoft.Build / Microsoft.Build.Evaluation / ProjectItem.cs
1 //
2 // ProjectItem.cs
3 //
4 // Author:
5 //   Leszek Ciesielski (skolima@gmail.com)
6 //   Rolf Bjarne Kvinge (rolf@xamarin.com)
7 //
8 // (C) 2011 Leszek Ciesielski
9 // Copyright (C) 2011 Xamarin Inc.
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 using System;
32 using System.Collections.Generic;
33 using System.Diagnostics;
34
35 using Microsoft.Build.Construction;
36
37 namespace Microsoft.Build.Evaluation
38 {
39         [DebuggerDisplay("{ItemType}={EvaluatedInclude} [{UnevaluatedInclude}] #DirectMetadata={DirectMetadataCount}")]
40         public class ProjectItem
41         {
42                 internal ProjectItem (ProjectItemElement xml)
43                 {
44                         Xml = xml;
45                 }
46
47                 public ProjectMetadata GetMetadata (string name)
48                 {
49                         throw new NotImplementedException ();
50                 }
51
52                 public string GetMetadataValue (string name)
53                 {
54                         throw new NotImplementedException ();
55                 }
56
57                 public bool HasMetadata (string name)
58                 {
59                         throw new NotImplementedException ();
60                 }
61
62                 public bool RemoveMetadata (string name)
63                 {
64                         throw new NotImplementedException ();
65                 }
66
67                 public void Rename (string name)
68                 {
69                         throw new NotImplementedException ();
70                 }
71
72                 public void SetMetadataValue (string name, string unevaluatedValue)
73                 {
74                         throw new NotImplementedException ();
75                 }
76
77                 public IEnumerable<ProjectMetadata> DirectMetadata {
78                         get { throw new NotImplementedException (); }
79                 }
80
81                 public int DirectMetadataCount {
82                         get { throw new NotImplementedException (); }
83                 }
84
85                 public string EvaluatedInclude {
86                         get { throw new NotImplementedException (); }
87                 }
88
89                 public bool IsImported {
90                         get { throw new NotImplementedException (); }
91                 }
92
93                 public string ItemType {
94                         get { throw new NotImplementedException (); }
95                         set { throw new NotImplementedException (); }
96                 }
97
98                 public ICollection<ProjectMetadata> Metadata {
99                         get { throw new NotImplementedException (); }
100                 }
101
102                 public int MetadataCount {
103                         get { throw new NotImplementedException (); }
104                 }
105
106                 public Project Project {
107                         get { throw new NotImplementedException (); }
108                 }
109
110                 public string UnevaluatedInclude {
111                         get { throw new NotImplementedException (); }
112                         set { throw new NotImplementedException (); }
113                 }
114
115                 public ProjectItemElement Xml { get; private set; }
116
117         }
118 }