We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fileType
LinkedFile
1 parent e0dd8d4 commit beefbaaCopy full SHA for beefbaa
src/main/java/org/jabref/model/entry/LinkedFile.java
@@ -43,6 +43,8 @@ public class LinkedFile implements Serializable {
43
// We have to mark these properties as transient because they can't be serialized directly
44
private transient StringProperty description = new SimpleStringProperty();
45
private transient StringProperty link = new SimpleStringProperty();
46
+ // This field is a {@link StringProperty}, and not an {@link ObjectProperty<FileType>}, as {@link LinkedFile} might
47
+ // be a URI, where a file type might not be present.
48
private transient StringProperty fileType = new SimpleStringProperty();
49
private transient StringProperty sourceURL = new SimpleStringProperty();
50
0 commit comments