Example #1
0
 // Constructor.
 private Manager()
 {
     handlers   = new HandlerCollection();
     active     = new Hashtable(16);
     assemblies = new Hashtable(8);
     LoadClassList();
 }
Example #2
0
	private Hashtable assemblies;	// Currently loaded region assemblies.

	// Constructor.
	private Manager()
			{
				handlers = new HandlerCollection();
				active = new Hashtable(16);
				assemblies = new Hashtable(8);
				LoadClassList();
			}
		// Constructor.
		public HandlerCollectionEnumerator(HandlerCollection coll)
				{
					this.coll = coll;
					this.posn = -1;
				}
Example #4
0
 // Constructor.
 public HandlerCollectionEnumerator(HandlerCollection coll)
 {
     this.coll = coll;
     this.posn = -1;
 }