Gridarta Editor
src
model
src
main
java
net
sf
gridarta
model
settings
DefaultVolatileSettings.java
Go to the documentation of this file.
1
/*
2
* Gridarta MMORPG map editor for Crossfire, Daimonin and similar games.
3
* Copyright (C) 2000-2023 The Gridarta Developers.
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation; either version 2 of the License, or
8
* (at your option) any later version.
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License along
16
* with this program; if not, write to the Free Software Foundation, Inc.,
17
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
*/
19
20
package
net.sf.gridarta.model.settings;
21
22
import
java.io.File;
23
import
org.jetbrains.annotations.NotNull;
24
29
public
class
DefaultVolatileSettings
implements
VolatileSettings
{
30
35
@NotNull
36
private
File
imageDirectory
;
37
41
@NotNull
42
private
File
currentSaveMapDirectory
;
43
48
public
DefaultVolatileSettings
(@NotNull
final
File mapsDirectory) {
49
imageDirectory
= mapsDirectory;
50
currentSaveMapDirectory
= mapsDirectory.exists() ? mapsDirectory :
new
File(System.getProperty(
"user.dir"
));
51
}
52
53
@NotNull
54
@Override
55
public
File
getImageDirectory
() {
56
return
imageDirectory
;
57
}
58
59
@Override
60
public
void
setImageDirectory
(@NotNull
final
File
imageDirectory
) {
61
this.imageDirectory =
imageDirectory
;
62
}
63
64
@NotNull
65
@Override
66
public
File
getCurrentSaveMapDirectory
() {
67
return
currentSaveMapDirectory
;
68
}
69
70
@Override
71
public
void
setCurrentSaveMapDirectory
(@NotNull
final
File
currentSaveMapDirectory
) {
72
this.currentSaveMapDirectory =
currentSaveMapDirectory
;
73
}
74
75
}
net.sf.gridarta.model.settings.DefaultVolatileSettings.getCurrentSaveMapDirectory
File getCurrentSaveMapDirectory()
Definition:
DefaultVolatileSettings.java:66
net.sf.gridarta.model.settings.DefaultVolatileSettings.imageDirectory
File imageDirectory
Definition:
DefaultVolatileSettings.java:36
net.sf.gridarta.model.settings.DefaultVolatileSettings.currentSaveMapDirectory
File currentSaveMapDirectory
Definition:
DefaultVolatileSettings.java:42
net.sf.gridarta.model.settings.DefaultVolatileSettings.setImageDirectory
void setImageDirectory(@NotNull final File imageDirectory)
Definition:
DefaultVolatileSettings.java:60
net.sf.gridarta.model.settings.DefaultVolatileSettings.setCurrentSaveMapDirectory
void setCurrentSaveMapDirectory(@NotNull final File currentSaveMapDirectory)
Definition:
DefaultVolatileSettings.java:71
net.sf.gridarta.model.settings.DefaultVolatileSettings.getImageDirectory
File getImageDirectory()
Definition:
DefaultVolatileSettings.java:55
net.sf.gridarta.model.settings.DefaultVolatileSettings
Definition:
DefaultVolatileSettings.java:29
net.sf.gridarta.model.settings.VolatileSettings
Definition:
VolatileSettings.java:29
net.sf.gridarta.model.settings.DefaultVolatileSettings.DefaultVolatileSettings
DefaultVolatileSettings(@NotNull final File mapsDirectory)
Definition:
DefaultVolatileSettings.java:48
Generated by
1.8.17