add.brief.option.add.gnome.vfs.binary.helper
[tfs.git] / class / Microsoft.TeamFoundation.VersionControl.Client / Annotation.cs
blobe49931127568e674fcbb40d400274f00891f68d4
1 //
2 // Microsoft.TeamFoundation.VersionControl.Client.Annotation
3 //
4 // Authors:
5 // Joel Reed (joelwreed@gmail.com)
6 //
7 // Copyright (C) 2007 Joel Reed
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.
29 using System;
30 using System.IO;
31 using System.IO.Compression;
32 using System.Net;
33 using System.Text;
34 using System.Xml;
35 using System.Web.Services;
37 namespace Microsoft.TeamFoundation.VersionControl.Client
39 internal class Annotation
41 private string item;
42 private int version;
43 private string name;
44 private string value;
45 private System.DateTime date;
46 private string comment;
48 internal static Annotation FromXml(Repository repository, XmlReader reader)
50 string elementName = reader.Name;
51 Annotation annotation = new Annotation();
53 annotation.item = reader.GetAttribute("item");
54 annotation.version = Convert.ToInt32(reader.GetAttribute("v"));
55 annotation.name = reader.GetAttribute("name");
56 annotation.value = reader.GetAttribute("value");
58 string date = reader.GetAttribute("date");
59 if (!String.IsNullOrEmpty(date))
60 annotation.date = DateTime.Parse(date);
62 while (reader.Read())
64 if (reader.NodeType == XmlNodeType.EndElement && reader.Name == elementName)
65 break;
67 if (reader.NodeType == XmlNodeType.Element)
69 switch (reader.Name)
71 case "Comment":
72 annotation.comment = reader.ReadString();
73 break;
78 return annotation;
81 public override string ToString()
83 StringBuilder sb = new StringBuilder();
85 sb.Append("Annotation instance ");
86 sb.Append(GetHashCode());
88 sb.Append("\n Comment: ");
89 sb.Append(Comment);
91 sb.Append("\n Version: ");
92 sb.Append(Version);
94 sb.Append("\n Name: ");
95 sb.Append(Name);
97 sb.Append("\n Value: ");
98 sb.Append(Value);
100 sb.Append("\n Date: ");
101 sb.Append(Date);
103 return sb.ToString();
106 public string Comment
108 get { return comment; }
111 public string Item
113 get { return item; }
116 public string Name
118 get { return name; }
121 public string Value
123 get { return value; }
126 public int Version
128 get { return version; }
131 public DateTime Date
133 get { return date; }