corrade-vassal – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 #region BSD License
2 /*
3 Copyright (c) 2004-2005 Matthew Holmes (matthew@wildfiregames.com), Dan Moorehead (dan05a@gmail.com)
4  
5 Redistribution and use in source and binary forms, with or without modification, are permitted
6 provided that the following conditions are met:
7  
8 * Redistributions of source code must retain the above copyright notice, this list of conditions
9 and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
11 and the following disclaimer in the documentation and/or other materials provided with the
12 distribution.
13 * The name of the author may not be used to endorse or promote products derived from this software
14 without specific prior written permission.
15  
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
17 BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
22 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24 #endregion
25  
26 #region CVS Information
27 /*
28 * $Source$
29 * $Author: jendave $
30 * $Date: 2006-07-25 09:56:49 -0700 (Tue, 25 Jul 2006) $
31 * $Revision: 132 $
32 */
33 #endregion
34  
35 using System;
36 using System.Xml;
37  
38 using Prebuild.Core.Attributes;
39 using Prebuild.Core.Interfaces;
40 using Prebuild.Core.Utilities;
41  
42 namespace Prebuild.Core.Nodes
43 {
44 /// <summary>
45 ///
46 /// </summary>
47 [DataNode("Reference")]
48 public class ReferenceNode : DataNode
49 {
50 #region Fields
51  
52 private string m_Name = "unknown";
53 private string m_Path;
54 private string m_LocalCopy;
55 private string m_Version;
56  
57 #endregion
58  
59 #region Properties
60  
61 /// <summary>
62 /// Gets the name.
63 /// </summary>
64 /// <value>The name.</value>
65 public string Name
66 {
67 get
68 {
69 return m_Name;
70 }
71 set
72 {
73 m_Name = value;
74 }
75 }
76  
77 /// <summary>
78 /// Gets the path.
79 /// </summary>
80 /// <value>The path.</value>
81 public string Path
82 {
83 get
84 {
85 return m_Path;
86 }
87 }
88  
89 /// <summary>
90 /// Gets a value indicating whether [local copy specified].
91 /// </summary>
92 /// <value><c>true</c> if [local copy specified]; otherwise, <c>false</c>.</value>
93 public bool LocalCopySpecified
94 {
95 get
96 {
97 return ( m_LocalCopy != null && m_LocalCopy.Length == 0);
98 }
99 }
100  
101 /// <summary>
102 /// Gets a value indicating whether [local copy].
103 /// </summary>
104 /// <value><c>true</c> if [local copy]; otherwise, <c>false</c>.</value>
105 public bool LocalCopy
106 {
107 get
108 {
109 if( m_LocalCopy == null)
110 {
111 return false;
112 }
113 return bool.Parse(m_LocalCopy);
114 }
115 }
116  
117 /// <summary>
118 /// Gets the version.
119 /// </summary>
120 /// <value>The version.</value>
121 public string Version
122 {
123 get
124 {
125 return m_Version;
126 }
127 }
128  
129 #endregion
130  
131 #region Public Methods
132  
133 /// <summary>
134 /// Parses the specified node.
135 /// </summary>
136 /// <param name="node">The node.</param>
137 public override void Parse(XmlNode node)
138 {
139 m_Name = Helper.AttributeValue(node, "name", m_Name);
140 m_Path = Helper.AttributeValue(node, "path", m_Path);
141 m_LocalCopy = Helper.AttributeValue(node, "localCopy", m_LocalCopy);
142 m_Version = Helper.AttributeValue(node, "version", m_Version);
143 }
144  
145 #endregion
146 }
147 }