2010-05-02 01:35:00 +02:00
|
|
|
package com.osmand;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class is designed to put all to do's and link them with code.
|
|
|
|
* The whole methods could be paste or just constants.
|
|
|
|
* Do not worry to put ugly code here (just a little piece)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class ToDoConstants {
|
|
|
|
|
|
|
|
|
|
|
|
public int CONFIG_COMMONS_LOGGING_IN_ANDROID = 1;
|
2010-05-02 14:35:36 +02:00
|
|
|
|
|
|
|
public int SAVE_SETTINGS_IN_ANDROID_BETWEEN_SESSION = 2;
|
|
|
|
|
|
|
|
public int IMPLEMENT_ON_STOP_RESUME_ACTIVITY = 3;
|
|
|
|
|
|
|
|
// OsmandMapTileView.java have problem with class loading (LogFactory, MapTileDownloader) -
|
|
|
|
// it is not editable in editor
|
|
|
|
public int MAKE_MAP_PANEL_EDITABLE_IN_EDITOR = 4;
|
2010-05-02 01:35:00 +02:00
|
|
|
|
|
|
|
}
|