Interface CWmonitorable

All Known Implementing Classes:
SOLlocation, SOLsurface, TMYdata

public abstract interface CWmonitorable

This interface allows us to access the getData() method of classes that can provide data for display.


Method Summary
 java.lang.String[] getFields()
          This object has a list of names of fields that can be retrieved.
 int[] getFieldTypes()
          This method gets a list of field types (for unit conversion).
 java.lang.String getName()
          This object has a name.
 double getValue(int month, int day, int hour, int fieldnum)
          This is the method that retrieves a value.
 

Method Detail

getName

public java.lang.String getName()
This object has a name.

getFields

public java.lang.String[] getFields()
This object has a list of names of fields that can be retrieved.

getValue

public double getValue(int month,
                       int day,
                       int hour,
                       int fieldnum)
This is the method that retrieves a value.

getFieldTypes

public int[] getFieldTypes()
This method gets a list of field types (for unit conversion).