This commit is contained in:
Hasan Kara
2016-10-05 14:51:05 +02:00
parent 5eaf021632
commit 96446e4e75

View File

@@ -11,7 +11,7 @@ import java.io.File;
import java.io.IOException; import java.io.IOException;
/** /**
* This class stores files and there state * This class stores files and their state
* @author abi * @author abi
*/ */
public class FileStorage<E> { public class FileStorage<E> {
@@ -26,7 +26,7 @@ public class FileStorage<E> {
private BooleanProperty fileChanged = new SimpleBooleanProperty(true); private BooleanProperty fileChanged = new SimpleBooleanProperty(true);
private ObjectProperty<File> file = new SimpleObjectProperty<>(); private ObjectProperty<File> file = new SimpleObjectProperty<>();
private ObjectProperty<E> content = new SimpleObjectProperty<E>(); private ObjectProperty<E> content = new SimpleObjectProperty<>();
public boolean isFileChanged() { public boolean isFileChanged() {
return fileChanged.get(); return fileChanged.get();