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:
aaron 2009-03-23 21:04:11 +00:00
parent 741dd357de
commit c5bd4a1af4
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}