plugins/org.symbian.tools.tmw.ui/src/org/symbian/tools/tmw/internal/ui/project/PrepareProjectJob.java
changeset 483 109da596fa9d
parent 473 8e8aed9adb99
equal deleted inserted replaced
482:2973198ae2a9 483:109da596fa9d
    38 public class PrepareProjectJob extends Job {
    38 public class PrepareProjectJob extends Job {
    39     private final IProject project;
    39     private final IProject project;
    40     private final IRunnableWithProgress action;
    40     private final IRunnableWithProgress action;
    41 
    41 
    42     public PrepareProjectJob(IProject project, IRunnableWithProgress action) {
    42     public PrepareProjectJob(IProject project, IRunnableWithProgress action) {
    43         super(String.format("Preparing project", project.getName()));
    43         super(String.format("Preparing project %s", project.getName()));
    44         this.project = project;
    44         this.project = project;
    45         this.action = action;
    45         this.action = action;
    46         setUser(false);
    46         setUser(false);
    47         setRule(ResourcesPlugin.getWorkspace().getRoot());
    47         setRule(ResourcesPlugin.getWorkspace().getRoot());
    48     }
    48     }