if (attributes.containsKey("hadoop.jar")) {
jarFile = (String) attributes.get("hadoop.jar");
} else {
String memento = (String) attributes.get("hadoop.jarrable");
JarModule fromMemento = JarModule.fromMemento(memento);
jarFile = fromMemento.buildJar(new SubProgressMonitor(monitor, 100))
.toString();
}
if (jarFile.lastIndexOf('/') > 0) {
remoteFile = jarFile.substring(jarFile.lastIndexOf('/') + 1);