/** * Copy this file into your app and edit it or just pass the * parameters in from the main() args in the project file. */ package com.jcomeau.blackberry; public class Test { public static void main(String[] args) { String url = Common.defaultUrl; if (args.length < 1) { System.err.println("Must specify URL; using default: " + url); } else { url = args[0]; } Common.launch(url); } }