Example #1
0
        /// <summary>
        /// Parses the current XmlTextReader node if it
        /// is the NAnt Target element.
        /// </summary>
        void ParseTargetElement(XmlTextReader xmlReader)
        {
            int line = xmlReader.LineNumber;
            int col  = xmlReader.LinePosition;

            string targetName = GetAttribute(xmlReader, NameAttributeName);

            bool isDefaultTarget = IsDefaultTargetName(defaultTargetName, targetName);

            NAntBuildTarget target =
                new NAntBuildTarget(targetName, isDefaultTarget, line, col);

            targets.Add(target);

            if (isDefaultTarget)
            {
                defaultTarget = target;
            }
        }
Example #2
0
        /// <summary>
        /// Parses the current XmlTextReader node if it
        /// is the NAnt Target element.
        /// </summary>
        void ParseTargetElement(XmlTextReader xmlReader)
        {
            // Take off one for line/col since SharpDevelop is zero based.
            int line = xmlReader.LineNumber - 1;
            int col  = xmlReader.LinePosition - 1;

            string targetName = GetAttribute(xmlReader, NameAttributeName);

            bool isDefaultTarget = IsDefaultTargetName(defaultTargetName, targetName);

            NAntBuildTarget target =
                new NAntBuildTarget(targetName, isDefaultTarget, line, col);

            targets.Add(target);

            if (isDefaultTarget)
            {
                defaultTarget = target;
            }
        }
 /// <summary>
 ///    <para>Returns the index of a <see cref='NAntBuildTarget'/> in
 ///       the <see cref='NAntBuildTargetCollection'/> .</para>
 /// </summary>
 /// <param name='val'>The <see cref='NAntBuildTarget'/> to locate.</param>
 /// <returns>
 /// <para>The index of the <see cref='NAntBuildTarget'/> of <paramref name='val'/> in the
 /// <see cref='NAntBuildTargetCollection'/>, if found; otherwise, -1.</para>
 /// </returns>
 /// <seealso cref='NAntBuildTargetCollection.Contains'/>
 public int IndexOf(NAntBuildTarget val)
 {
     return(List.IndexOf(val));
 }
 /// <summary>
 /// <para>Gets a value indicating whether the
 ///    <see cref='NAntBuildTargetCollection'/> contains the specified <see cref='NAntBuildTarget'/>.</para>
 /// </summary>
 /// <param name='val'>The <see cref='NAntBuildTarget'/> to locate.</param>
 /// <returns>
 /// <para><see langword='true'/> if the <see cref='NAntBuildTarget'/> is contained in the collection;
 ///   otherwise, <see langword='false'/>.</para>
 /// </returns>
 /// <seealso cref='NAntBuildTargetCollection.IndexOf'/>
 public bool Contains(NAntBuildTarget val)
 {
     return(List.Contains(val));
 }
 /// <summary>
 ///    <para>Adds a <see cref='NAntBuildTarget'/> with the specified value to the
 ///    <see cref='NAntBuildTargetCollection'/> .</para>
 /// </summary>
 /// <param name='val'>The <see cref='NAntBuildTarget'/> to add.</param>
 /// <returns>
 ///    <para>The index at which the new element was inserted.</para>
 /// </returns>
 /// <seealso cref='NAntBuildTargetCollection.AddRange'/>
 public int Add(NAntBuildTarget val)
 {
     return(List.Add(val));
 }
		/// <summary>
		/// Parses the current XmlTextReader node if it
		/// is the NAnt Target element.
		/// </summary>
		void ParseTargetElement(XmlTextReader xmlReader)
		{
			// Take off one for line/col since SharpDevelop is zero based.
			int line = xmlReader.LineNumber - 1;
			int col = xmlReader.LinePosition - 1;
			
			string targetName = GetAttribute(xmlReader, NameAttributeName);
			
			bool isDefaultTarget = IsDefaultTargetName(defaultTargetName, targetName);
			
			NAntBuildTarget target = 
				new NAntBuildTarget(targetName, isDefaultTarget, line, col);
			    
			targets.Add(target);
			
			if (isDefaultTarget) {
				defaultTarget = target;
			}
		}
		/// <summary>
		///     <para>
		///       Initializes a new instance of <see cref='NAntBuildTargetCollection'/> containing any array of <see cref='NAntBuildTarget'/> objects.
		///    </para>
		/// </summary>
		/// <param name='val'>
		///       A array of <see cref='NAntBuildTarget'/> objects with which to intialize the collection
		/// </param>
		public NAntBuildTargetCollection(NAntBuildTarget[] val)
		{
			this.AddRange(val);
		}
		/// <summary>
		///    <para> Removes a specific <see cref='NAntBuildTarget'/> from the 
		///    <see cref='NAntBuildTargetCollection'/> .</para>
		/// </summary>
		/// <param name='val'>The <see cref='NAntBuildTarget'/> to remove from the <see cref='NAntBuildTargetCollection'/> .</param>
		/// <returns><para>None.</para></returns>
		/// <exception cref='System.ArgumentException'><paramref name='val'/> is not found in the Collection. </exception>
		public void Remove(NAntBuildTarget val)
		{
			List.Remove(val);
		}
		/// <summary>
		///    <para>Returns the index of a <see cref='NAntBuildTarget'/> in 
		///       the <see cref='NAntBuildTargetCollection'/> .</para>
		/// </summary>
		/// <param name='val'>The <see cref='NAntBuildTarget'/> to locate.</param>
		/// <returns>
		/// <para>The index of the <see cref='NAntBuildTarget'/> of <paramref name='val'/> in the 
		/// <see cref='NAntBuildTargetCollection'/>, if found; otherwise, -1.</para>
		/// </returns>
		/// <seealso cref='NAntBuildTargetCollection.Contains'/>
		public int IndexOf(NAntBuildTarget val)
		{
			return List.IndexOf(val);
		}
		/// <summary>
		/// <para>Copies the <see cref='NAntBuildTargetCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 
		///    specified index.</para>
		/// </summary>
		/// <param name='array'><para>The one-dimensional <see cref='System.Array'/> that is the destination of the values copied from <see cref='NAntBuildTargetCollection'/> .</para></param>
		/// <param name='index'>The index in <paramref name='array'/> where copying begins.</param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <exception cref='System.ArgumentException'><para><paramref name='array'/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref='NAntBuildTargetCollection'/> is greater than the available space between <paramref name='arrayIndex'/> and the end of <paramref name='array'/>.</para></exception>
		/// <exception cref='System.ArgumentNullException'><paramref name='array'/> is <see langword='null'/>. </exception>
		/// <exception cref='System.ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less than <paramref name='array'/>'s lowbound. </exception>
		/// <seealso cref='System.Array'/>
		public void CopyTo(NAntBuildTarget[] array, int index)
		{
			List.CopyTo(array, index);
		}
		/// <summary>
		/// <para>Gets a value indicating whether the 
		///    <see cref='NAntBuildTargetCollection'/> contains the specified <see cref='NAntBuildTarget'/>.</para>
		/// </summary>
		/// <param name='val'>The <see cref='NAntBuildTarget'/> to locate.</param>
		/// <returns>
		/// <para><see langword='true'/> if the <see cref='NAntBuildTarget'/> is contained in the collection; 
		///   otherwise, <see langword='false'/>.</para>
		/// </returns>
		/// <seealso cref='NAntBuildTargetCollection.IndexOf'/>
		public bool Contains(NAntBuildTarget val)
		{
			return List.Contains(val);
		}
		/// <summary>
		/// <para>Copies the elements of an array to the end of the <see cref='NAntBuildTargetCollection'/>.</para>
		/// </summary>
		/// <param name='val'>
		///    An array of type <see cref='NAntBuildTarget'/> containing the objects to add to the collection.
		/// </param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <seealso cref='NAntBuildTargetCollection.Add'/>
		public void AddRange(NAntBuildTarget[] val)
		{
			for (int i = 0; i < val.Length; i++) {
				this.Add(val[i]);
			}
		}
		/// <summary>
		///    <para>Adds a <see cref='NAntBuildTarget'/> with the specified value to the 
		///    <see cref='NAntBuildTargetCollection'/> .</para>
		/// </summary>
		/// <param name='val'>The <see cref='NAntBuildTarget'/> to add.</param>
		/// <returns>
		///    <para>The index at which the new element was inserted.</para>
		/// </returns>
		/// <seealso cref='NAntBuildTargetCollection.AddRange'/>
		public int Add(NAntBuildTarget val)
		{
			return List.Add(val);
		}
Example #14
0
		/// <summary>
		/// Parses the current XmlTextReader node if it
		/// is the NAnt Target element.
		/// </summary>
		void ParseTargetElement(XmlTextReader xmlReader)
		{
			int line = xmlReader.LineNumber;
			int col = xmlReader.LinePosition;
			
			string targetName = GetAttribute(xmlReader, NameAttributeName);
			
			bool isDefaultTarget = IsDefaultTargetName(defaultTargetName, targetName);
			
			NAntBuildTarget target = 
				new NAntBuildTarget(targetName, isDefaultTarget, line, col);
			    
			targets.Add(target);
			
			if (isDefaultTarget) {
				defaultTarget = target;
			}
		}
 /// <summary>
 /// <para>Inserts a <see cref='NAntBuildTarget'/> into the <see cref='NAntBuildTargetCollection'/> at the specified index.</para>
 /// </summary>
 /// <param name='index'>The zero-based index where <paramref name='val'/> should be inserted.</param>
 /// <param name='val'>The <see cref='NAntBuildTarget'/> to insert.</param>
 /// <returns><para>None.</para></returns>
 /// <seealso cref='NAntBuildTargetCollection.Add'/>
 public void Insert(int index, NAntBuildTarget val)
 {
     List.Insert(index, val);
 }
 /// <summary>
 ///    <para> Removes a specific <see cref='NAntBuildTarget'/> from the
 ///    <see cref='NAntBuildTargetCollection'/> .</para>
 /// </summary>
 /// <param name='val'>The <see cref='NAntBuildTarget'/> to remove from the <see cref='NAntBuildTargetCollection'/> .</param>
 /// <returns><para>None.</para></returns>
 /// <exception cref='System.ArgumentException'><paramref name='val'/> is not found in the Collection. </exception>
 public void Remove(NAntBuildTarget val)
 {
     List.Remove(val);
 }
		/// <summary>
		/// <para>Inserts a <see cref='NAntBuildTarget'/> into the <see cref='NAntBuildTargetCollection'/> at the specified index.</para>
		/// </summary>
		/// <param name='index'>The zero-based index where <paramref name='val'/> should be inserted.</param>
		/// <param name='val'>The <see cref='NAntBuildTarget'/> to insert.</param>
		/// <returns><para>None.</para></returns>
		/// <seealso cref='NAntBuildTargetCollection.Add'/>
		public void Insert(int index, NAntBuildTarget val)
		{
			List.Insert(index, val);
		}