// NAnt - A .NET build tool
// Copyright (C) 2001-2004 Gerry Shaw
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// Ian MacLean ( ian@maclean.ms )
// Scott Hernandez (ScottHernandez_at_HOtMail_dot_dot_dot_com?)
using System;
namespace NAnt.Core.Attributes {
///
/// Indicates that the property should be treated as an XML element and
/// further processing should be done.
///
///
///
/// Should only be applied to properties exposing strongly typed arrays or
/// strongly typed collections.
///
///
/// The XML format is like this:
///
///
///
///
///
///
/// ]]>
///
///
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Method, Inherited=true)]
public class BuildElementAttribute : Attribute {
#region Protected Instance Constructors
///
/// Initializes a new instance of the with the
/// specified name.
///
/// The name of the attribute.
/// is .
/// is a zero-length .
public BuildElementAttribute(string name) {
Name = name;
}
#endregion Protected Instance Constructors
#region Public Instance Properties
///
/// Gets or sets the name of the attribute.
///
///
/// The name of the attribute.
///
public string Name {
get { return _name; }
set {
if (value == null) {
throw new ArgumentNullException("name");
}
// XML element names cannot have whitespace at the beginning,
// or end.
_name = value.Trim();
if (_name.Length == 0) {
throw new ArgumentOutOfRangeException("name", value, "A zero-length string is not an allowed value.");
}
}
}
///
/// Gets or sets a value indicating whether the attribute is required.
///
///
/// if the attribute is required; otherwise,
/// . The default is .
///
public bool Required {
get { return _required; }
set { _required = value; }
}
///
/// Used to specify how this element will be handled as the XML is parsed
/// and given to the element.
///
///
/// if XML should be processed; otherwise
/// . The default is .
///
public bool ProcessXml {
get { return _processXml; }
set { _processXml = value; }
}
#endregion Public Instance Properties
#region Private Instance Fields
private string _name;
private bool _required = false;
private bool _processXml = true;
#endregion Private Instance Fields
}
}