org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/internal/deployment/externalapp/FilesystemDeploymentTarget.java
changeset 461 7a8f9fa8d278
parent 460 c0bff5ed874c
child 462 cdc4995b1677
equal deleted inserted replaced
460:c0bff5ed874c 461:7a8f9fa8d278
     1 /**
       
     2  * Copyright (c) 2010 Symbian Foundation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Symbian Foundation - initial contribution.
       
    11  * Contributors:
       
    12  * Description:
       
    13  * Overview:
       
    14  * Details:
       
    15  * Platforms/Drives/Compatibility:
       
    16  * Assumptions/Requirement/Pre-requisites:
       
    17  * Failures and causes:
       
    18  */
       
    19 package org.symbian.tools.mtw.internal.deployment.externalapp;
       
    20 
       
    21 import org.eclipse.core.runtime.CoreException;
       
    22 import org.eclipse.core.runtime.IProgressMonitor;
       
    23 import org.eclipse.core.runtime.jobs.ISchedulingRule;
       
    24 import org.symbian.tools.mtw.core.projects.IMTWProject;
       
    25 import org.symbian.tools.mtw.ui.deployment.IDeploymentTarget;
       
    26 import org.symbian.tools.mtw.ui.deployment.IDeploymentTargetType;
       
    27 
       
    28 public class FilesystemDeploymentTarget implements IDeploymentTargetType {
       
    29 
       
    30     public FilesystemDeploymentTarget() {
       
    31         // TODO Auto-generated constructor stub
       
    32     }
       
    33 
       
    34     public IDeploymentTarget[] getTargets(IMTWProject project) {
       
    35         // TODO Auto-generated method stub
       
    36         return null;
       
    37     }
       
    38 
       
    39     public void discoverTargets(IProgressMonitor monitor) throws CoreException {
       
    40         // TODO Auto-generated method stub
       
    41 
       
    42     }
       
    43 
       
    44     public IDeploymentTarget findTarget(IMTWProject project, String id) {
       
    45         // TODO Auto-generated method stub
       
    46         return null;
       
    47     }
       
    48 
       
    49     public boolean targetsDiscovered() {
       
    50         // TODO Auto-generated method stub
       
    51         return false;
       
    52     }
       
    53 
       
    54     public ISchedulingRule getSchedulingRule(IDeploymentTarget target) {
       
    55         // TODO Auto-generated method stub
       
    56         return null;
       
    57     }
       
    58 
       
    59 }