Changeset 12856 in josm for trunk/src/org/openstreetmap/josm/spi/preferences/IBaseDirectories.java
- Timestamp:
- 2017-09-14T15:09:01+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/spi/preferences/IBaseDirectories.java
r12855 r12856 15 15 * Get the directory where user-specific configuration and preferences 16 16 * should be stored. 17 * @param createIfMissing if true, automatically creates this directory, 18 * in case it is missing 17 19 * @return the preferences directory 20 * @since 12856 18 21 */ 19 File getPreferencesDirectory( );22 File getPreferencesDirectory(boolean createIfMissing); 20 23 21 24 /** 22 25 * Get the directory where user-specific data files should be stored. 26 * @param createIfMissing if true, automatically creates this directory, 27 * in case it is missing 23 28 * @return the user data directory 29 * @since 12856 24 30 */ 25 File getUserDataDirectory( );31 File getUserDataDirectory(boolean createIfMissing); 26 32 27 33 /** 28 34 * Get the directory where user-specific cached content (non-essential data) 29 35 * should be stored. 36 * @param createIfMissing if true, automatically creates this directory, 37 * in case it is missing 30 38 * @return the cache directory 39 * @since 12856 31 40 */ 32 File getCacheDirectory( );41 File getCacheDirectory(boolean createIfMissing); 33 42 }
Note:
See TracChangeset
for help on using the changeset viewer.