// 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
//
// Gerry Shaw (gerry_shaw@yahoo.com)
using System;
namespace NAnt.Core.Attributes {
///
/// Indicates that property should be treated as a XML attribute for the
/// task.
///
///
/// Examples of how to specify task attributes
///
/// #region Public Instance Properties
///
/// [BuildAttribute("out", Required=true)]
/// public string Output {
/// get { return _out; }
/// set { _out = value; }
/// }
///
/// [BuildAttribute("optimize")]
/// [BooleanValidator()]
/// public bool Optimize {
/// get { return _optimize; }
/// set { _optimize = value; }
/// }
///
/// [BuildAttribute("warnlevel")]
/// [Int32Validator(0,4)] // limit values to 0-4
/// public int WarnLevel {
/// get { return _warnLevel; }
/// set { _warnLevel = value; }
/// }
///
/// [BuildElement("sources")]
/// public FileSet Sources {
/// get { return _sources; }
/// set { _sources = value; }
/// }
///
/// #endregion Public Instance Properties
///
/// #region Private Instance Fields
///
/// private string _out = null;
/// private bool _optimize = false;
/// private int _warnLevel = 4;
/// private FileSet _sources = new FileSet();
///
/// #endregion Private Instance Fields
///
///
[AttributeUsage(AttributeTargets.Property, Inherited=true)]
public abstract class BuildAttributeAttribute : 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 .
protected BuildAttributeAttribute(string name) {
Name = name;
}
#endregion Protected Instance Constructors
#region Public Instance Properties
///
/// Gets or sets the name of the XML attribute.
///
///
/// The name of the XML attribute.
///
public string Name {
get { return _name; }
set {
if (value == null) {
throw new ArgumentNullException("name");
}
// XML attribute 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; }
}
///
/// Gets or sets a value indicating whether property references should
/// be expanded.
///
///
/// if properties should be expanded; otherwise
/// . The default is .
///
public bool ExpandProperties {
get { return _expandProperties; }
set { _expandProperties = value; }
}
///
/// Used to specify how this attribute 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 _expandProperties = true;
private bool _processXml = true;
#endregion Private Instance Fields
}
}