Package com.luciad.model
Class TLcdDefaultTileProvider
java.lang.Object
com.luciad.model.ALcdTileProvider
com.luciad.model.TLcdDefaultTileProvider
- All Implemented Interfaces:
ILcdTileProvider
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 Summary
Modifier and TypeFieldDescriptionstatic final String
Deprecated.Part of the property names.static final String
Deprecated.Property name to specify the name of the file.Fields inherited from class com.luciad.model.ALcdTileProvider
NO_OF_TILE_COLUMNS, NO_OF_TILE_ROWS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected String
createTileSourceName
(int aRow, int aCol) Deprecated.Returns the full tile source name for the specified row and column, ornull
if no tile exists for the specified (row, column) combination.void
loadProperties
(String aPrefix, Properties aProperties) Deprecated.Initializes this tile provider with the specified properties.Methods inherited from class com.luciad.model.ALcdTileProvider
getBasePath, getNoOfCols, getNoOfRows, getTile, isTraceOn, setBasePath, setTileDecoder, setTraceOn
-
Field Details
-
DEFAULT_TILE_PROVIDER
Deprecated.Part of the property names.- See Also:
-
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
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 callsuper.loadProperties
to get the number of rows and columns.- Specified by:
loadProperties
in interfaceILcdTileProvider
- Overrides:
loadProperties
in classALcdTileProvider
- Parameters:
aPrefix
- a prefix that is used for the properties of this tile provider.aProperties
- the properties to initialize this tile provider with.
-
createTileSourceName
Deprecated.Description copied from class:ALcdTileProvider
Returns the full tile source name for the specified row and column, ornull
if no tile exists for the specified (row, column) combination.- Specified by:
createTileSourceName
in classALcdTileProvider
- 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..
-