URL url = RobotExecutor.class.getResource("RobotExecutor.class");
if( "bundleresource".equals(url.getProtocol()) ) {
Bundle b = FrameworkUtil.getBundle(RobotExecutor.class);
URL rootEntry = b.getEntry("/");
URLConverter converter = getURLConverter(b.getBundleContext(), rootEntry);
if (converter != null) {
try {
rootEntry = converter.resolve(rootEntry);
if (rootEntry != null && "file".equals(rootEntry.getProtocol())) {
File installLocation = new File(rootEntry.getPath());
String classpathSep = System.getProperty("path.separator");
rv = new File(installLocation,"JemmyCore.jar").getAbsolutePath();