Uses of Class
com.neatech.climbplan.userinterface.models.MapModel

Packages that use MapModel
com.neatech.climbplan.dataaccess   
com.neatech.climbplan.geographicinformationgathering   
com.neatech.climbplan.userinterface   
com.neatech.climbplan.userinterface.models   
com.neatech.climbplan.userinterface.views   
 

Uses of MapModel in com.neatech.climbplan.dataaccess
 

Methods in com.neatech.climbplan.dataaccess with parameters of type MapModel
 void DatabaseImpl.deleteMap(MapModel map)
           
 void Database.deleteMap(MapModel map)
          This method deletes a MapModel from the database.
private  void DatabaseImpl.insertLayer(MapModel map, Layer layer)
           
 void DatabaseImpl.insertMap(MapModel map)
           
 void Database.insertMap(MapModel map)
          This method inserts a MapModel to the database by filling the given list of MapModel as a parameter.
private  void DatabaseImpl.updateLayer(MapModel map, Layer layer)
           
 void DatabaseImpl.updateMap(MapModel map)
           
 void Database.updateMap(MapModel map)
          This method updates a MapModel by storing the data to the database if necessary.
 

Method parameters in com.neatech.climbplan.dataaccess with type arguments of type MapModel
 void DatabaseImpl.getAllMaps(List<MapModel> maps)
           
 void Database.getAllMaps(List<MapModel> maps)
          This method returns all the maps stored in the database as a list of MapModel by filling the list of MapModel given as a parameter.
 

Uses of MapModel in com.neatech.climbplan.geographicinformationgathering
 

Fields in com.neatech.climbplan.geographicinformationgathering declared as MapModel
private  MapModel MapOperations.map
           
 

Methods in com.neatech.climbplan.geographicinformationgathering with parameters of type MapModel
 void MapOperations.mapChanged(MapModel map)
           
private  void MapOperations.setMap(MapModel map)
           
 

Constructors in com.neatech.climbplan.geographicinformationgathering with parameters of type MapModel
MapOperations(MapModel map)
           
 

Uses of MapModel in com.neatech.climbplan.userinterface
 

Methods in com.neatech.climbplan.userinterface with parameters of type MapModel
 void MainScreen.openMapView(MapModel m)
           
 

Uses of MapModel in com.neatech.climbplan.userinterface.models
 

Fields in com.neatech.climbplan.userinterface.models declared as MapModel
private  MapModel ActivityModel.map
           
 

Fields in com.neatech.climbplan.userinterface.models with type parameters of type MapModel
private  List<MapModel> MapsModel.maps
           
 

Methods in com.neatech.climbplan.userinterface.models that return MapModel
 MapModel ActivityModel.getMap()
           
 

Methods in com.neatech.climbplan.userinterface.models that return types with arguments of type MapModel
private  List<MapModel> Model.getAllMaps()
           
 List<MapModel> MapsModel.getMaps()
           
 

Methods in com.neatech.climbplan.userinterface.models with parameters of type MapModel
 void MapsModel.addMap(MapModel map)
           
private  void MapModel.assign(MapModel model, boolean assignId)
           
 void Model.deleteMap(MapModel map)
           
 void Model.insertMap(MapModel map)
           
 void MapsModel.removeMap(MapModel map)
           
 void ActivityModel.setMap(MapModel map)
           
 void Model.updateMap(MapModel map)
           
 void MapModel.updateMap(MapModel change)
           
 

Method parameters in com.neatech.climbplan.userinterface.models with type arguments of type MapModel
 void MapsModel.setMaps(List<MapModel> maps)
           
 void MapsModel.updateMountaineers(List<MapModel> changes)
           
 

Constructors in com.neatech.climbplan.userinterface.models with parameters of type MapModel
MapModel(MapModel model)
           
 

Constructor parameters in com.neatech.climbplan.userinterface.models with type arguments of type MapModel
MapsModel(List<MapModel> maps)
           
 

Uses of MapModel in com.neatech.climbplan.userinterface.views
 

Fields in com.neatech.climbplan.userinterface.views declared as MapModel
private  MapModel MapView.model
           
 

Methods in com.neatech.climbplan.userinterface.views that return MapModel
private  MapModel MapView.getDisplay()
           
 

Methods in com.neatech.climbplan.userinterface.views with parameters of type MapModel
private  void MapView.setModel(MapModel model)
           
 

Constructors in com.neatech.climbplan.userinterface.views with parameters of type MapModel
MapView(MapModel model)