Class TLcdDefaultTileProvider

java.lang.Object
com.luciad.model.ALcdTileProvider
com.luciad.model.TLcdDefaultTileProvider
All Implemented Interfaces:
ILcdTileProvider

@Deprecated public class TLcdDefaultTileProvider extends ALcdTileProvider
Deprecated.
This API is only here to support deprecated formats.
This extension of ALcdTileProvider retrieves the names of the source files for the tiles from a given Properties.
  • Field Details

    • DEFAULT_TILE_PROVIDER

      public static final String DEFAULT_TILE_PROVIDER
      Deprecated.
      Part of the property names.
      See Also:
    • FILENAME

      public static final String FILENAME
      Deprecated.
      Property name to specify the name of the file. Used with the row and column appended.
      See Also:
  • Constructor Details

    • TLcdDefaultTileProvider

      public TLcdDefaultTileProvider()
      Deprecated.
  • Method Details

    • loadProperties

      public void loadProperties(String aPrefix, Properties aProperties)
      Deprecated.
      Description copied from class: ALcdTileProvider
      Initializes this tile provider with the specified properties. The exact contents of these properties are specified by the implementations of this interface.

      This abstract implementation only gets the properties that specify the number of rows and the number of columns. Overwrite this method to load properties that are specific to your ILcdTileProvider implementation. First call super.loadProperties to get the number of rows and columns.

      Specified by:
      loadProperties in interface ILcdTileProvider
      Overrides:
      loadProperties in class ALcdTileProvider
      Parameters:
      aPrefix - a prefix that is used for the properties of this tile provider.
      aProperties - the properties to initialize this tile provider with.
    • createTileSourceName

      protected String createTileSourceName(int aRow, int aCol)
      Deprecated.
      Description copied from class: ALcdTileProvider
      Returns the full tile source name for the specified row and column, or null if no tile exists for the specified (row, column) combination.
      Specified by:
      createTileSourceName in class ALcdTileProvider
      Parameters:
      aRow - the row number of the tile.
      aCol - the column number of the tile.
      Returns:
      the full tile source name for the specified row and column, or null if no tile exists for the specified (row, column) combination..