org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/deploy/DeployWizardContext.java
changeset 278 890be734ebec
parent 263 0c4249e0396d
equal deleted inserted replaced
277:7cca3bcacbc1 278:890be734ebec
    24 import org.symbian.tools.wrttools.WRTProject;
    24 import org.symbian.tools.wrttools.WRTProject;
    25 
    25 
    26 public class DeployWizardContext {
    26 public class DeployWizardContext {
    27     private DeploymentTarget target;
    27     private DeploymentTarget target;
    28     private final WRTProject project;
    28     private final WRTProject project;
       
    29     private boolean logging;
    29 
    30 
    30     public DeployWizardContext(WRTProject project) {
    31     public DeployWizardContext(WRTProject project) {
    31         this.project = project;
    32         this.project = project;
    32     }
    33     }
    33 
    34 
    48     }
    49     }
    49 
    50 
    50     public void doSearch(SubProgressMonitor monitor) throws CoreException {
    51     public void doSearch(SubProgressMonitor monitor) throws CoreException {
    51         DeploymentTargetRegistry.getRegistry().doSearch(monitor);
    52         DeploymentTargetRegistry.getRegistry().doSearch(monitor);
    52     }
    53     }
       
    54 
       
    55     public boolean didBluetoothLookup() {
       
    56         return DeploymentTargetRegistry.getRegistry().didBluetoothLookup();
       
    57     }
       
    58 
       
    59     public void setLogging(boolean logging) {
       
    60         this.logging = logging;
       
    61     }
       
    62 
       
    63     public boolean isLogging() {
       
    64         return logging;
       
    65     }
    53 }
    66 }