Пример #1
0
 protected SnmpTable(InetAddress address, String tableName, NamedSnmpVar[] columns) {
   super(NamedSnmpVar.getTrackersFor(columns));
   m_address = address;
   m_tableName = tableName;
 }
 /**
  * The class constructor is used to initialize the collector and send out the initial SNMP packet
  * requesting data. The data is then received and store by the object. When all the data has been
  * collected the passed signaler object is <EM>notified</em> using the notifyAll() method.
  *
  * @param address TODO
  */
 public SystemGroup(InetAddress address) {
   super(NamedSnmpVar.getTrackersFor(ms_elemList));
   m_address = address;
   m_store = new SnmpStore(ms_elemList);
 }