Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Diagnostics/TraceListenerCollection.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/TraceListenerCollection.cs210
1 files changed, 0 insertions, 210 deletions
diff --git a/mcs/class/System/System.Diagnostics/TraceListenerCollection.cs b/mcs/class/System/System.Diagnostics/TraceListenerCollection.cs
deleted file mode 100644
index 8d32414efbc..00000000000
--- a/mcs/class/System/System.Diagnostics/TraceListenerCollection.cs
+++ /dev/null
@@ -1,210 +0,0 @@
-//
-// System.Diagnostics.TraceListenerCollection.cs
-//
-// Authors:
-// Jonathan Pryor (jonpryor@vt.edu)
-//
-// Comments from John R. Hicks <angryjohn69@nc.rr.com> original implementation
-// can be found at: /mcs/docs/apidocs/xml/en/System.Diagnostics
-//
-// (C) 2002 Jonathan Pryor
-//
-
-
-using System;
-using System.Collections;
-using System.Diagnostics;
-using System.Globalization;
-
-namespace System.Diagnostics {
-
- public class TraceListenerCollection : IList, ICollection, IEnumerable {
-
- private ArrayList listeners = new ArrayList ();
-
- internal TraceListenerCollection ()
- {
- Add (new DefaultTraceListener ());
- }
-
- public int Count{
- get {return listeners.Count;}
- }
-
- public TraceListener this [string name] {
- get {
- foreach (TraceListener listener in listeners) {
- if (listener.Name == name)
- return listener;
- }
- return null;
- }
- }
-
- public TraceListener this [int index] {
- get {return (TraceListener) listeners[index];}
- set {
- InitializeListener (value);
- listeners[index] = value;
- }
- }
-
- object IList.this [int index] {
- get {return listeners[index];}
- set {
- this[index] = (TraceListener) value;
- }
- }
-
- bool ICollection.IsSynchronized {
- get {return listeners.IsSynchronized;}
- }
-
- object ICollection.SyncRoot {
- get {return listeners.SyncRoot;}
- }
-
- bool IList.IsFixedSize {
- get {return listeners.IsFixedSize;}
- }
-
- bool IList.IsReadOnly {
- get {return listeners.IsReadOnly;}
- }
-
- public int Add (TraceListener listener)
- {
- InitializeListener (listener);
- return listeners.Add (listener);
- }
-
- private void InitializeListener (TraceListener listener)
- {
- listener.IndentLevel = TraceImpl.IndentLevel;
- listener.IndentSize = TraceImpl.IndentSize;
- }
-
- private void InitializeRange (IList listeners)
- {
- int e = listeners.Count;
- for (int i = 0; i != e; ++i)
- InitializeListener (
- (TraceListener) listeners[i]);
- }
-
- public void AddRange (TraceListener[] value)
- {
- InitializeRange (value);
- listeners.AddRange (value);
- }
-
- public void AddRange (TraceListenerCollection value)
- {
- InitializeRange (value);
- listeners.AddRange (value.listeners);
- }
-
- public void Clear ()
- {
- listeners.Clear ();
- }
-
- public bool Contains (TraceListener listener)
- {
- return listeners.Contains (listener);
- }
-
- public void CopyTo (TraceListener[] listeners, int index)
- {
- listeners.CopyTo (listeners, index);
- }
-
- public IEnumerator GetEnumerator ()
- {
- return listeners.GetEnumerator ();
- }
-
- void ICollection.CopyTo (Array array, int index)
- {
- listeners.CopyTo (array, index);
- }
-
- int IList.Add (object value)
- {
- if (value is TraceListener)
- return Add ((TraceListener) value);
- throw new NotSupportedException (Locale.GetText (
- "You can only add TraceListener objects to the collection"));
- }
-
- bool IList.Contains (object value)
- {
- if (value is TraceListener)
- return listeners.Contains (value);
- return false;
- }
-
- int IList.IndexOf (object value)
- {
- if (value is TraceListener)
- return listeners.IndexOf (value);
- return -1;
- }
-
- void IList.Insert (int index, object value)
- {
- if (value is TraceListener) {
- Insert (index, (TraceListener) value);
- return;
- }
- throw new NotSupportedException (Locale.GetText (
- "You can only insert TraceListener objects into the collection"));
- }
-
- void IList.Remove (object value)
- {
- if (value is TraceListener)
- listeners.Remove (value);
- }
-
- public int IndexOf (TraceListener listener)
- {
- return listeners.IndexOf (listener);
- }
-
- public void Insert (int index, TraceListener listener)
- {
- InitializeListener (listener);
- listeners.Insert (index, listener);
- }
-
- public void Remove (string name)
- {
- TraceListener found = null;
-
- foreach (TraceListener listener in listeners) {
- if (listener.Name == name) {
- found = listener;
- break;
- }
- }
-
- if (found != null)
- listeners.Remove (found);
- else
- throw new ArgumentException (Locale.GetText (
- "TraceListener " + name + " was not in the collection"));
- }
-
- public void Remove (TraceListener listener)
- {
- listeners.Remove (listener);
- }
-
- public void RemoveAt (int index)
- {
- listeners.RemoveAt (index);
- }
- }
-}
-