Computer formatted
This commit is contained in:
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
+10
-1
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
+4
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user