stitcher
stitcher copied to clipboard
Parameterization of Resource Names - ugggh
Many resource names are hardcoded in the java code
e.g.
public class GSRSEventParser extends EventParser {
public GSRSEventParser() {
super ("G-SRS, April 2020");
}
The EventParser classes in particular need to be refactored to accept a variable name for that resource at run time. As well as many of the conf files, which resolve their references back to another resource, like G-SRS e.g.
{ key = "I_UNII"
id = "UNII"
name = "G-SRS, April 2020"
}
]