made the class that we pull fields from of type Object, so we can use any class (that has the specified fields).
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@159 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
741dd357de
commit
c5bd4a1af4
|
|
@ -44,9 +44,9 @@ public class ArgumentParser {
|
|||
protected static Logger logger = Logger.getLogger(ArgumentParser.class);
|
||||
|
||||
// the reference to the command line program to fill in
|
||||
CommandLineProgram prog;
|
||||
Object prog;
|
||||
|
||||
public ArgumentParser(String programName, CommandLineProgram prog) {
|
||||
public ArgumentParser(String programName, Object prog) {
|
||||
this.programName = programName;
|
||||
this.prog = prog;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue