org.jlab.coda.et
Class AllData

java.lang.Object
  extended byorg.jlab.coda.et.AllData

public class AllData
extends java.lang.Object

This class holds all the information about an ET system. This includes information about attachments, stations, processes, and the system level.


Field Summary
 AttachmentData[] attData
          Holds attachment information.
 ProcessData[] procData
          Hold process information.
 StationData[] statData
          Holds station information.
 SystemData sysData
          Holds system information.
 
Constructor Summary
AllData()
          Creates the bare minimum needed to hold the information of an ET system.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

sysData

public SystemData sysData
Holds system information.


statData

public StationData[] statData
Holds station information.


attData

public AttachmentData[] attData
Holds attachment information.


procData

public ProcessData[] procData
Hold process information. There are no processes (local processes which have direct access to the ET shared memory) in Java language ET.

Constructor Detail

AllData

public AllData()
Creates the bare minimum needed to hold the information of an ET system. Information about stations, attachments, and processes are added by other methods.

See Also:
SystemUse.getData()