Class ExternalDataLocation

java.lang.Object
hec.externalplugin.ExternalDataLocation

public class ExternalDataLocation extends Object
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. In this case you have the following: Source - absolute path to a file. for example Excel filename. Data location - reference to location in the file. for example specific cell, or range of cells, within an Excel file
  • Constructor Details

    • ExternalDataLocation

      public ExternalDataLocation()
  • Method Details

    • setPlugin

      public void setPlugin(String plugin)
      sets the plugin that created this ExternalDataLocation
      Parameters:
      plugin -
    • getPlugin

      public String getPlugin()
      gets the plugin that created this ExternalDataLocation
      Returns:
    • setSource

      public void setSource(String source)
      sets the source to read the data from
      Parameters:
      source -
    • getSource

      public String getSource()
      gets the source to read the data from
      Returns:
    • getDataLocation

      public String getDataLocation()
      gets the location, within the source, to read the data
      Returns:
    • setDataLocation

      public void setDataLocation(String dataLocation)
      sets the location, within the source, to read the data
      Parameters:
      dataLocation -