stitcher icon indicating copy to clipboard operation
stitcher copied to clipboard

Parameterization of Resource Names - ugggh

Open southalln opened this issue 4 years ago • 0 comments

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"
 }
]

southalln avatar Dec 14 '20 14:12 southalln