Package hec.externalplugin


package hec.externalplugin
  • Class
    Description
    ExternalDataLocation contains the information necessary to read data The data has a source (generally a filename) and a location within that source An example is reading data from an excel file.
    An ExternalDataPlugin provides a mechanism to select data from a source, and a location within that source.
    This class manages the ExternalDataPlugins available.
    ExternalDataType holds the plugin name, source type, and the data type The plugin name is the plugin that can search for data of this ExternalDataType The source type is generally the file type that the data comes from, but could be anything else represented as a string The data type is a string representing the type of data supported within the source Example: Plugin to provide a range of cells from an Excel spreadsheet source type = "Excel" data type = "Range"
    SelfRegisteringExternalDataPlugin registers itself with the ExternalDataPluginManager on construction, which is typically necessary for an ExternalDataPlugin