X-Git-Url: http://git.phpeclipse.com diff --git a/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/CreateFilesJob.java b/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/CreateFilesJob.java index 82f7769..1b384c7 100644 --- a/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/CreateFilesJob.java +++ b/archive/net.sourceforge.phpeclipse.wiki/src/net/sourceforge/phpeclipse/wiki/actions/CreateFilesJob.java @@ -42,9 +42,12 @@ public class CreateFilesJob extends WorkspaceJob { } try { if (!file.exists()) { + monitor.subTask("Create File: "+file.getLocation().toString()); file.create(source, true, monitor); } else { - console.println("File: " + file.getLocation().toString() + "\n==>file already exists!"); + String message = "File: " + file.getLocation().toString() + "\n==>file already exists!"; + monitor.subTask(message); + console.println(message); } } catch (CoreException e) { if (file != null) {