C# Class RevitLookup.Snoop.Collectors.Collector

This is the base class of data collector objects. We'll just establish the protocol for derived classes. This class is abstract and cannot be instantiated except by derived classes. A Snoop.Collector class is passed an object and manually fills up an ArrayList of Snoop.Data objects. The list is then displayed in a Form (or can be sent elsewhere if need be). For the most part, the Collector is just the initial catch point. CollectorExts are responsible for knowing about certain types of objects.
Mostrar archivo Open project: jeremytammik/RevitLookup

Protected Properties

Property Type Description
m_dataObjs System.Collections.ArrayList

Public Methods

Method Description
Collector ( ) : System
Data ( ) : ArrayList

Protected Methods

Method Description
FireEvent_CollectExt ( object objToSnoop ) : void

Method Details

Collector() public method

public Collector ( ) : System
return System

Data() public method

public Data ( ) : ArrayList
return System.Collections.ArrayList

FireEvent_CollectExt() protected method

protected FireEvent_CollectExt ( object objToSnoop ) : void
objToSnoop object
return void

Property Details

m_dataObjs protected_oe property

protected ArrayList,System.Collections m_dataObjs
return System.Collections.ArrayList