/// <summary>
            /// Initializes a new instance of the <see cref="ObjectCollection"/> class.
            /// </summary>
            /// <exception cref="ArgumentNullException">
            /// <para><paramref name="owner"/> is <see langword="null"/>.</para>
            /// </exception>
            public ObjectCollection(NuGenPinpointWindow owner)
            {
                if (owner == null)
                {
                    throw new ArgumentNullException("owner");
                }

                _owner = owner;
                _list  = new ArrayList();
            }
			/// <summary>
			/// Initializes a new instance of the <see cref="ObjectCollection"/> class.
			/// </summary>
			/// <exception cref="ArgumentNullException">
			/// <para><paramref name="owner"/> is <see langword="null"/>.</para>
			/// </exception>
			public ObjectCollection(NuGenPinpointWindow owner)
			{
				if (owner == null)
				{
					throw new ArgumentNullException("owner");
				}

				_owner = owner;
				_list = new ArrayList();
			}