dropHandler.performDrop(url, null);
}
}
private boolean recognizedFile( String url ) {
if (url.toLowerCase().indexOf("file://") != -1 ){ //$NON-NLS-1$
return new FileConnectionFactory().canProcess(url);
}
final Pattern PATTERN = Pattern.compile("[^:/]+://?.+"); //$NON-NLS-1$
if( PATTERN.matcher(url).matches()){
return new FileConnectionFactory().canProcess(url);
}
return false;
}
public void changed(LocationEvent event) {
//