Interface IGeographicalSchemaView
- All Known Implementing Classes:
GeographicalSchemaView
public interface IGeographicalSchemaView
Interface to interact with editor view.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cleanUp()
Cleans up the legend, map and title.boolean
Checks if any of the components is disposedvoid
Redraws legend.void
Redraws map.void
Redraws title.void
setLegendVisible
(boolean isVisible) Sets legend visibilityvoid
setTitleVisible
(boolean isVisible) Sets title visibilityvoid
updateBounds
(Class<?> componentClass) Updates component's bounds for new values
-
Method Details
-
redrawLegend
void redrawLegend()Redraws legend. -
redrawMap
void redrawMap()Redraws map. -
setTitleVisible
void setTitleVisible(boolean isVisible) Sets title visibility- Parameters:
isVisible
- is title visible
-
setLegendVisible
void setLegendVisible(boolean isVisible) Sets legend visibility- Parameters:
isVisible
- is legend visible
-
redrawTitle
void redrawTitle()Redraws title. -
updateBounds
Updates component's bounds for new values- Parameters:
componentClass
- class of the component to be updated, can benull
-
isComponentDisposed
boolean isComponentDisposed()Checks if any of the components is disposed- Returns:
- if any of the components is disposed
-
cleanUp
void cleanUp()Cleans up the legend, map and title.
-