Xataface 2.0
Xataface Application Framework
build_tools/jsdoc/java/src/JsRun.java
Go to the documentation of this file.
00001 
00011 public class JsRun {
00012         public static void main(String[] args) {
00013                 String[] jsargs = {"-j="+args[0]};
00014                 
00015                 String[] allArgs = new String[jsargs.length + args.length];
00016                 System.arraycopy(args, 0, allArgs, 0, args.length);
00017                 System.arraycopy(jsargs, 0, allArgs, args.length ,jsargs.length);
00018 
00019                 org.mozilla.javascript.tools.shell.Main.main(allArgs);
00020     }
00021 }
 All Data Structures Namespaces Files Functions Variables Enumerations