Computer formatted

This commit is contained in:
2018-07-23 09:14:46 +02:00
parent 84d0086a66
commit bebc0abbb3
92 changed files with 74 additions and 12 deletions
View File
View File
Regular → Executable
View File
View File
View File
View File
View File
View File
View File
Regular → Executable
+10 -1
View File
@@ -25,7 +25,8 @@ public class Filter {
MSD,
HAS_MSD,
SOLAR_FILTERS,
MULTIPLE_KEYS
MULTIPLE_KEYS,
NOTE_PUNCTUATIONS
}
public Filter() {
@@ -161,4 +162,12 @@ public class Filter {
return new ArrayList<>();
}
}
public void setNotePunctuations(boolean notePunctuations) {
filter.put(NOTE_PUNCTUATIONS, notePunctuations);
}
public boolean getNotePunctuations() {
return filter.containsKey(NOTE_PUNCTUATIONS) && (boolean) filter.get(NOTE_PUNCTUATIONS);
}
}
View File
View File
View File
View File
Regular → Executable
View File
Regular → Executable
View File
View File
View File
Regular → Executable
View File
Regular → Executable
View File
View File
Regular → Executable
+4
View File
@@ -134,6 +134,10 @@ public class Word implements Serializable {
return msd;
}
public void setMsd(String msd) {
this.msd = msd;
}
public String toString() {
StringBuilder sb = new StringBuilder();