Platform Interface Helper Class: RuntimeHelp

helper public class RuntimeHelp {
  public harmless static String flattenStringArray (String cmdarray[]) {
    String rcommand;
    
    rcommand = "";
    for (int i = 0; i < cmdarray.length; i++) {
      if (i > 0) {
        rcommand += " ";
      } 
      
      rcommand += cmdarray[i];
    }

    return rcommand;
  }
}

About this file

Naccio Home Page
David Evans
University of Virginia, Computer Science