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
FieldsModifier and TypeFieldDescriptionstatic final StringDeprecated.Part of the property names.static final StringDeprecated.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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected StringcreateTileSourceName(int aRow, int aCol) Deprecated.Returns the full tile source name for the specified row and column, ornullif no tile exists for the specified (row, column) combination.voidloadProperties(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:ALcdTileProviderInitializes 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
ILcdTileProviderimplementation. First callsuper.loadPropertiesto get the number of rows and columns.- Specified by:
loadPropertiesin interfaceILcdTileProvider- Overrides:
loadPropertiesin 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:ALcdTileProviderReturns the full tile source name for the specified row and column, ornullif no tile exists for the specified (row, column) combination.- Specified by:
createTileSourceNamein 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
nullif no tile exists for the specified (row, column) combination..
-