rem
stringlengths
0
477k
add
stringlengths
0
313k
context
stringlengths
6
599k
meta
stringlengths
141
403
} else
} else
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
Iterator arg_it = args.listIterator (common_args_no);
Iterator arg_it = args.listIterator(common_args_no);
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
File java_file = new File ((String)arg_it.next());
File java_file = new File((String) arg_it.next());
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename);
int dotpos = basename.lastIndexOf('.'); basename = basename.substring(0, dotpos) + ".class"; File class_file = new File(java_file.getParentFile(), basename);
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (! class_file.exists ())
if (!class_file.exists())
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue())
CompileResult result = new CompileResult( this.langpack.getString("CompilePanel.error.noclassfile") + java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError(result); if (!result.isContinue())
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
for (int i = args.size()-1; i >= common_args_no; i--)
for (int i = args.size() - 1; i >= common_args_no; i--)
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
args.removeLast ();
args.removeLast();
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.listener.progress (last_fileno, jobfiles);
this.listener.progress(last_fileno, jobfiles);
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String[] full_cmdline = (String[])args.toArray (output);
String[] full_cmdline = (String[]) args.toArray(output);
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
int retval = executor.executeCommand (full_cmdline, output);
int retval = executor.executeCommand(full_cmdline, output);
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.listener.progress (fileno, jobfiles);
this.listener.progress(fileno, jobfiles);
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue())
CompileResult result = new CompileResult( this.langpack.getString("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError(result); if (!result.isContinue())
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)");
Debug.trace("job " + this.name + " done (" + fileno + " files compiled)");
public CompileResult perform (String compiler, ArrayList arguments) { Debug.trace ("starting job " + this.name); // we have some maximum command line length - need to count int cmdline_len = 0; // used to collect the arguments for executing the compiler LinkedList args = new LinkedList(arguments); { Iterator arg_it = args.iterator(); while (arg_it.hasNext ()) cmdline_len += ((String)arg_it.next()).length()+1; } // add compiler in front of arguments args.add (0, compiler); cmdline_len += compiler.length()+1; // construct classpath argument for compiler // - collect all classpaths StringBuffer classpath_sb = new StringBuffer(); Iterator cp_it = this.classpath.iterator(); while (cp_it.hasNext ()) { String cp = (String)cp_it.next(); if (classpath_sb.length() > 0) classpath_sb.append (File.pathSeparatorChar); classpath_sb.append (new File (cp).getAbsolutePath()); } String classpath_str = classpath_sb.toString (); // - add classpath argument to command line if (classpath_str.length() > 0) { args.add ("-classpath"); cmdline_len = cmdline_len + 11; args.add (classpath_str); cmdline_len += classpath_str.length()+1; } // remember how many arguments we have which don't change for the job int common_args_no = args.size(); // remember how long the common command line is int common_args_len = cmdline_len; // used for execution FileExecutor executor = new FileExecutor (); String output[] = new String[2]; // used for displaying the progress bar String jobfiles = ""; int fileno = 0; int last_fileno = 0; // now iterate over all files of this job Iterator file_it = this.files.iterator(); while (file_it.hasNext()) { File f = (File)file_it.next(); String fpath = f.getAbsolutePath(); Debug.trace ("processing "+fpath); // we add the file _first_ to the arguments to have a better // chance to get something done if the command line is almost // MAX_CMDLINE_SIZE or even above fileno++; jobfiles += f.getName() + " "; args.add (fpath); cmdline_len += fpath.length(); // start compilation if maximum command line length reached if (cmdline_len >= MAX_CMDLINE_SIZE) { Debug.trace ("compiling " + jobfiles); // display useful progress bar (avoid showing 100% while still // compiling a lot) this.listener.progress (last_fileno, jobfiles); last_fileno = fileno; String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); // update progress bar: compilation of fileno files done this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } else { // verify that all files have been compiled successfully // I found that sometimes, no error code is returned although // compilation failed. Iterator arg_it = args.listIterator (common_args_no); while (arg_it.hasNext()) { File java_file = new File ((String)arg_it.next()); String basename = java_file.getName(); int dotpos = basename.lastIndexOf ('.'); basename = basename.substring (0, dotpos) + ".class"; File class_file = new File (java_file.getParentFile(), basename); if (! class_file.exists ()) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error.noclassfile")+java_file.getAbsolutePath(), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; // don't continue any further break; } } } // clean command line: remove files we just compiled for (int i = args.size()-1; i >= common_args_no; i--) { args.removeLast (); } cmdline_len = common_args_len; jobfiles = ""; } } if (cmdline_len > common_args_len) { this.listener.progress (last_fileno, jobfiles); String[] full_cmdline = (String[])args.toArray (output); int retval = executor.executeCommand (full_cmdline, output); this.listener.progress (fileno, jobfiles); if (retval != 0) { CompileResult result = new CompileResult (this.langpack.getString ("CompilePanel.error"), full_cmdline, output[0], output[1]); this.listener.handleCompileError (result); if (! result.isContinue()) return result; } } Debug.trace ("job "+this.name+" done (" + fileno + " files compiled)"); return new CompileResult(); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
public CompileWorker(AutomatedInstallData idata, CompileHandler handler) throws IOException
public CompileWorker(AutomatedInstallData idata, CompileHandler handler) throws IOException
public CompileWorker(AutomatedInstallData idata, CompileHandler handler) throws IOException { this.idata = idata; this.handler = handler; this.vs = new VariableSubstitutor(idata.getVariableValueMap()); this.compilationThread = null; if (! readSpec ()) throw new IOException ("Error reading compilation specification"); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (! readSpec ()) throw new IOException ("Error reading compilation specification");
if (!readSpec()) throw new IOException("Error reading compilation specification");
public CompileWorker(AutomatedInstallData idata, CompileHandler handler) throws IOException { this.idata = idata; this.handler = handler; this.vs = new VariableSubstitutor(idata.getVariableValueMap()); this.compilationThread = null; if (! readSpec ()) throw new IOException ("Error reading compilation specification"); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private void changeClassPath (ArrayList classpath, XMLElement child)
private void changeClassPath(ArrayList classpath, XMLElement child)
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String add = child.getAttribute ("add");
String add = child.getAttribute("add");
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
add = this.vs.substitute (add, "plain"); if (! new File (add).exists ())
add = this.vs.substitute(add, "plain"); if (!new File(add).exists())
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist.");
if (!this .handler .emitWarning( "Invalid classpath", "The path " + add + " could not be found.\nCompilation may fail.")) throw new Exception("Classpath " + add + " does not exist."); } else { classpath.add(this.vs.substitute(add, "plain"));
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
else { classpath.add (this.vs.substitute (add, "plain")); }
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String sub = child.getAttribute ("sub");
String sub = child.getAttribute("sub");
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
sub = this.vs.substitute (sub, "plain");
sub = this.vs.substitute(sub, "plain");
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0);
cpidx = classpath.indexOf(sub); classpath.remove(cpidx); } while (cpidx >= 0);
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private void changeClassPath (ArrayList classpath, XMLElement child) throws Exception { String add = child.getAttribute ("add"); if (add != null) { add = this.vs.substitute (add, "plain"); if (! new File (add).exists ()) { if (! this.handler.emitWarning("Invalid classpath", "The path "+add+" could not be found.\nCompilation may fail.")) throw new Exception ("Classpath "+add+" does not exist."); } else { classpath.add (this.vs.substitute (add, "plain")); } } String sub = child.getAttribute ("sub"); if (sub != null) { int cpidx = -1; sub = this.vs.substitute (sub, "plain"); do { cpidx = classpath.indexOf (sub); classpath.remove (cpidx); } while (cpidx >= 0); } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private boolean collectJobs () throws Exception
private boolean collectJobs() throws Exception
private boolean collectJobs () throws Exception { XMLElement data = this.spec.getFirstChildNamed ("jobs"); if (data == null) return false; // list of classpath entries ArrayList classpath = new ArrayList(); this.jobs = new ArrayList(); // we throw away the toplevel compilation job // (all jobs are collected in this.jobs) collectJobsRecursive (data, classpath); return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
XMLElement data = this.spec.getFirstChildNamed ("jobs");
XMLElement data = this.spec.getFirstChildNamed("jobs");
private boolean collectJobs () throws Exception { XMLElement data = this.spec.getFirstChildNamed ("jobs"); if (data == null) return false; // list of classpath entries ArrayList classpath = new ArrayList(); this.jobs = new ArrayList(); // we throw away the toplevel compilation job // (all jobs are collected in this.jobs) collectJobsRecursive (data, classpath); return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
collectJobsRecursive (data, classpath);
collectJobsRecursive(data, classpath);
private boolean collectJobs () throws Exception { XMLElement data = this.spec.getFirstChildNamed ("jobs"); if (data == null) return false; // list of classpath entries ArrayList classpath = new ArrayList(); this.jobs = new ArrayList(); // we throw away the toplevel compilation job // (all jobs are collected in this.jobs) collectJobsRecursive (data, classpath); return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath)
private CompilationJob collectJobsRecursive( XMLElement node, ArrayList classpath)
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone ();
Enumeration toplevel_tags = node.enumerateChildren(); ArrayList ourclasspath = (ArrayList) classpath.clone();
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
while (toplevel_tags.hasMoreElements ())
while (toplevel_tags.hasMoreElements())
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
XMLElement child = (XMLElement)toplevel_tags.nextElement ();
XMLElement child = (XMLElement) toplevel_tags.nextElement();
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (child.getName ().equals ("classpath"))
if (child.getName().equals("classpath"))
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job"))
changeClassPath(ourclasspath, child); } else if (child.getName().equals("job"))
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
CompilationJob subjob = collectJobsRecursive (child, ourclasspath);
CompilationJob subjob = collectJobsRecursive(child, ourclasspath);
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.jobs.add (subjob); } else if (child.getName().equals ("directory"))
this.jobs.add(subjob); } else if (child.getName().equals("directory"))
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String name = child.getAttribute ("name");
String name = child.getAttribute("name");
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String finalname = this.vs.substitute (name, "plain");
String finalname = this.vs.substitute(name, "plain");
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
files.addAll (scanDirectory (new File (finalname)));
files.addAll(scanDirectory(new File(finalname)));
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
} else if (child.getName().equals ("file"))
} else if (child.getName().equals("file"))
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String name = child.getAttribute ("name");
String name = child.getAttribute("name");
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String finalname = this.vs.substitute (name, "plain");
String finalname = this.vs.substitute(name, "plain");
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
files.add (new File (finalname));
files.add(new File(finalname));
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
} else if (child.getName().equals ("packdepency"))
} else if (child.getName().equals("packdepency"))
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String name = child.getAttribute ("name");
String name = child.getAttribute("name");
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
System.out.println ("invalid compilation spec: <packdepency> without name attribute");
System.out.println( "invalid compilation spec: <packdepency> without name attribute");
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next();
com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack) pack_it.next();
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (pack.name.equals (name))
if (pack.name.equals(name))
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (! found)
if (!found)
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
Debug.trace ("skipping job because pack " + name + " was not selected.");
Debug.trace( "skipping job because pack " + name + " was not selected.");
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath);
return new CompilationJob( this.handler, this.idata.langpack, (String) node.getAttribute("name"), files, ourclasspath);
private CompilationJob collectJobsRecursive (XMLElement node, ArrayList classpath) throws Exception { Enumeration toplevel_tags = node.enumerateChildren (); ArrayList ourclasspath = (ArrayList)classpath.clone (); ArrayList files = new ArrayList(); while (toplevel_tags.hasMoreElements ()) { XMLElement child = (XMLElement)toplevel_tags.nextElement (); if (child.getName ().equals ("classpath")) { changeClassPath (ourclasspath, child); } else if (child.getName ().equals ("job")) { CompilationJob subjob = collectJobsRecursive (child, ourclasspath); if (subjob != null) this.jobs.add (subjob); } else if (child.getName().equals ("directory")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.addAll (scanDirectory (new File (finalname))); } } else if (child.getName().equals ("file")) { String name = child.getAttribute ("name"); if (name != null) { // substitute variables String finalname = this.vs.substitute (name, "plain"); files.add (new File (finalname)); } } else if (child.getName().equals ("packdepency")) { String name = child.getAttribute ("name"); if (name == null) { System.out.println ("invalid compilation spec: <packdepency> without name attribute"); return null; } // check whether the wanted pack was selected for installation Iterator pack_it = this.idata.selectedPacks.iterator(); boolean found = false; while (pack_it.hasNext()) { com.izforge.izpack.Pack pack = (com.izforge.izpack.Pack)pack_it.next(); if (pack.name.equals (name)) { found = true; break; } } if (! found) { Debug.trace ("skipping job because pack " + name + " was not selected."); return null; } } } if (files.size() > 0) return new CompilationJob (this.handler, this.idata.langpack, (String)node.getAttribute ("name"), files, ourclasspath); return null; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private CompileResult compileJobs ()
private CompileResult compileJobs()
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse);
StringTokenizer tokenizer = new StringTokenizer(this.compilerArgumentsToUse);
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
while (tokenizer.hasMoreTokens ())
while (tokenizer.hasMoreTokens())
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
args.add (tokenizer.nextToken());
args.add(tokenizer.nextToken());
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.handler.startAction ("Compilation", this.jobs.size());
this.handler.startAction("Compilation", this.jobs.size());
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
CompilationJob first_job = (CompilationJob)this.jobs.get (0);
CompilationJob first_job = (CompilationJob) this.jobs.get(0);
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ())
CompileResult check_result = first_job.checkCompiler(this.compilerToUse, args); if (!check_result.isContinue())
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.handler.nextStep (job.getName(), job.getSize(), job_no++);
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
CompileResult result = job.perform (this.compilerToUse, args);
this.handler.nextStep(job.getName(), job.getSize(), job_no++);
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (! result.isContinue())
CompileResult result = job.perform(this.compilerToUse, args); if (!result.isContinue())
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
Debug.trace ("compilation finished."); return new CompileResult ();
Debug.trace("compilation finished."); return new CompileResult();
private CompileResult compileJobs () { ArrayList args = new ArrayList(); StringTokenizer tokenizer = new StringTokenizer (this.compilerArgumentsToUse); while (tokenizer.hasMoreTokens ()) { args.add (tokenizer.nextToken()); } Iterator job_it = this.jobs.iterator(); this.handler.startAction ("Compilation", this.jobs.size()); // check whether compiler is valid (but only if there are jobs) if (job_it.hasNext()) { CompilationJob first_job = (CompilationJob)this.jobs.get (0); CompileResult check_result = first_job.checkCompiler (this.compilerToUse, args); if (! check_result.isContinue ()) { return check_result; } } int job_no = 0; while (job_it.hasNext()) { CompilationJob job = (CompilationJob) job_it.next(); this.handler.nextStep (job.getName(), job.getSize(), job_no++); CompileResult result = job.perform (this.compilerToUse, args); if (! result.isContinue()) return result; } Debug.trace ("compilation finished."); return new CompileResult (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
public ArrayList getAvailableArguments ()
public ArrayList getAvailableArguments()
public ArrayList getAvailableArguments () { readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); return this.compilerArgumentsList; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList);
readChoices(this.compilerArgumentsSpec, this.compilerArgumentsList);
public ArrayList getAvailableArguments () { readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); return this.compilerArgumentsList; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
public ArrayList getAvailableCompilers ()
public ArrayList getAvailableCompilers()
public ArrayList getAvailableCompilers () { readChoices (this.compilerSpec, this.compilerList); return this.compilerList; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
readChoices (this.compilerSpec, this.compilerList);
readChoices(this.compilerSpec, this.compilerList);
public ArrayList getAvailableCompilers () { readChoices (this.compilerSpec, this.compilerList); return this.compilerList; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
public String getCompiler ()
public String getCompiler()
public String getCompiler () { return this.compilerToUse; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
public String getCompilerArguments ()
public String getCompilerArguments()
public String getCompilerArguments () { return this.compilerArgumentsToUse; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
public CompileResult getResult ()
public CompileResult getResult()
public CompileResult getResult () { return this.result; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private void readChoices (XMLElement element, ArrayList result)
private void readChoices(XMLElement element, ArrayList result)
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
Vector choices = element.getChildrenNamed ("choice");
Vector choices = element.getChildrenNamed("choice");
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
result.clear ();
result.clear();
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
while (choice_it.hasNext ())
while (choice_it.hasNext())
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
XMLElement choice = (XMLElement)choice_it.next();
XMLElement choice = (XMLElement) choice_it.next();
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
String value = choice.getAttribute ("value");
String value = choice.getAttribute("value");
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
result.add (this.vs.substitute (value, "plain"));
result.add(this.vs.substitute(value, "plain"));
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private void readChoices (XMLElement element, ArrayList result) { Vector choices = element.getChildrenNamed ("choice"); if (choices == null) return; result.clear (); Iterator choice_it = choices.iterator(); while (choice_it.hasNext ()) { XMLElement choice = (XMLElement)choice_it.next(); String value = choice.getAttribute ("value"); if (value != null) { List osconstraints = OsConstraint.getOsList(choice); if (OsConstraint.oneMatchesCurrentSystem(osconstraints)) { result.add (this.vs.substitute (value, "plain")); } } } }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
private boolean readSpec ()
private boolean readSpec()
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace();
InputStream input; try { input = ResourceManager.getInstance().getInputStream(SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace();
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
}
}
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) {
StdXMLParser parser = new StdXMLParser(); parser.setBuilder(new StdXMLBuilder()); parser.setValidator(new NonValidator()); try { parser.setReader(new StdXMLReader(input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) {
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
e.printStackTrace();
e.printStackTrace();
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
}
}
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (! this.spec.hasChildren ())
if (!this.spec.hasChildren())
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList ();
this.compilerArgumentsList = new ArrayList(); this.compilerList = new ArrayList();
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
XMLElement global = this.spec.getFirstChildNamed ("global");
XMLElement global = this.spec.getFirstChildNamed("global");
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.compilerSpec = global.getFirstChildNamed ("compiler");
this.compilerSpec = global.getFirstChildNamed("compiler");
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
readChoices (this.compilerSpec, this.compilerList);
readChoices(this.compilerSpec, this.compilerList);
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments");
this.compilerArgumentsSpec = global.getFirstChildNamed("arguments");
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList);
readChoices(this.compilerArgumentsSpec, this.compilerArgumentsList);
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.compilerList.add ("javac"); this.compilerList.add ("jikes");
this.compilerList.add("javac"); this.compilerList.add("jikes");
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (this.compilerArgumentsList.size () == 0)
if (this.compilerArgumentsList.size() == 0)
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add ("");
this.compilerArgumentsList.add("-O -g:none"); this.compilerArgumentsList.add("-O"); this.compilerArgumentsList.add("-g"); this.compilerArgumentsList.add("");
private boolean readSpec () { InputStream input; try { input = ResourceManager.getInstance().getInputStream (SPEC_RESOURCE_NAME); } catch (Exception e) { e.printStackTrace(); return false; } StdXMLParser parser = new StdXMLParser (); parser.setBuilder (new StdXMLBuilder ()); parser.setValidator (new NonValidator ()); try { parser.setReader (new StdXMLReader (input)); this.spec = (XMLElement) parser.parse(); } catch (Exception e) { System.out.println("Error parsing XML specification for compilation."); e.printStackTrace(); return false; } if (! this.spec.hasChildren ()) return false; this.compilerArgumentsList = new ArrayList (); this.compilerList = new ArrayList (); // read <global> information XMLElement global = this.spec.getFirstChildNamed ("global"); // use some default values if no <global> section found if (global != null) { // get list of compilers this.compilerSpec = global.getFirstChildNamed ("compiler"); if (this.compilerSpec != null) { readChoices (this.compilerSpec, this.compilerList); } this.compilerArgumentsSpec = global.getFirstChildNamed ("arguments"); if (this.compilerArgumentsSpec != null) { // basicly perform sanity check readChoices (this.compilerArgumentsSpec, this.compilerArgumentsList); } } // supply default values if no useful ones where found if (this.compilerList.size() == 0) { this.compilerList.add ("javac"); this.compilerList.add ("jikes"); } if (this.compilerArgumentsList.size () == 0) { this.compilerArgumentsList.add ("-O -g:none"); this.compilerArgumentsList.add ("-O"); this.compilerArgumentsList.add ("-g"); this.compilerArgumentsList.add (""); } return true; }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
public void run ()
public void run()
public void run () { try { if (! collectJobs ()) { String[] dummy_command = { "no command" }; this.result = new CompileResult (this.idata.langpack.getString ("CompilePanel.worker.nofiles"), dummy_command, "", ""); } else { this.result = compileJobs (); } } catch (Exception e) { this.result = new CompileResult (); this.result.setStatus (CompileResult.FAILED); this.result.setAction (CompileResult.ACTION_ABORT); } this.handler.stopAction (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
if (! collectJobs ())
if (!collectJobs())
public void run () { try { if (! collectJobs ()) { String[] dummy_command = { "no command" }; this.result = new CompileResult (this.idata.langpack.getString ("CompilePanel.worker.nofiles"), dummy_command, "", ""); } else { this.result = compileJobs (); } } catch (Exception e) { this.result = new CompileResult (); this.result.setStatus (CompileResult.FAILED); this.result.setAction (CompileResult.ACTION_ABORT); } this.handler.stopAction (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.result = new CompileResult (this.idata.langpack.getString ("CompilePanel.worker.nofiles"), dummy_command, "", "");
this.result = new CompileResult( this.idata.langpack.getString("CompilePanel.worker.nofiles"), dummy_command, "", ""); } else { this.result = compileJobs();
public void run () { try { if (! collectJobs ()) { String[] dummy_command = { "no command" }; this.result = new CompileResult (this.idata.langpack.getString ("CompilePanel.worker.nofiles"), dummy_command, "", ""); } else { this.result = compileJobs (); } } catch (Exception e) { this.result = new CompileResult (); this.result.setStatus (CompileResult.FAILED); this.result.setAction (CompileResult.ACTION_ABORT); } this.handler.stopAction (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
else { this.result = compileJobs (); } } catch (Exception e)
} catch (Exception e)
public void run () { try { if (! collectJobs ()) { String[] dummy_command = { "no command" }; this.result = new CompileResult (this.idata.langpack.getString ("CompilePanel.worker.nofiles"), dummy_command, "", ""); } else { this.result = compileJobs (); } } catch (Exception e) { this.result = new CompileResult (); this.result.setStatus (CompileResult.FAILED); this.result.setAction (CompileResult.ACTION_ABORT); } this.handler.stopAction (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.result = new CompileResult (); this.result.setStatus (CompileResult.FAILED); this.result.setAction (CompileResult.ACTION_ABORT);
this.result = new CompileResult(); this.result.setStatus(CompileResult.FAILED); this.result.setAction(CompileResult.ACTION_ABORT);
public void run () { try { if (! collectJobs ()) { String[] dummy_command = { "no command" }; this.result = new CompileResult (this.idata.langpack.getString ("CompilePanel.worker.nofiles"), dummy_command, "", ""); } else { this.result = compileJobs (); } } catch (Exception e) { this.result = new CompileResult (); this.result.setStatus (CompileResult.FAILED); this.result.setAction (CompileResult.ACTION_ABORT); } this.handler.stopAction (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java
this.handler.stopAction ();
this.handler.stopAction();
public void run () { try { if (! collectJobs ()) { String[] dummy_command = { "no command" }; this.result = new CompileResult (this.idata.langpack.getString ("CompilePanel.worker.nofiles"), dummy_command, "", ""); } else { this.result = compileJobs (); } } catch (Exception e) { this.result = new CompileResult (); this.result.setStatus (CompileResult.FAILED); this.result.setAction (CompileResult.ACTION_ABORT); } this.handler.stopAction (); }
54145 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54145/6e8ab3930a21f787bcd0f3cf0b9937f9d50c80c0/CompileWorker.java/clean/src/lib/com/izforge/izpack/installer/CompileWorker.java