You can easily access the command line parameters of your RCP application via the Platform object, here is an example:
String args[] = Platform.getCommandLineArgs();
int i = 0;
while(i < args.length) {
System.out.println(args[i]);
i++;
}
You can easily access the command line parameters of your RCP application via the Platform object, here is an example:
String args[] = Platform.getCommandLineArgs();
int i = 0;
while(i < args.length) {
System.out.println(args[i]);
i++;
}