plugins/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/libraries/PhoneGapLibraryInstaller.java
changeset 473 8e8aed9adb99
parent 472 bd9f2d7c64a6
child 474 e2f461f0a9e0
equal deleted inserted replaced
472:bd9f2d7c64a6 473:8e8aed9adb99
     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.wrttools.core.libraries;
       
    20 
       
    21 import java.io.InputStream;
       
    22 
       
    23 import org.eclipse.core.resources.IProject;
       
    24 import org.eclipse.core.runtime.CoreException;
       
    25 import org.eclipse.core.runtime.IPath;
       
    26 import org.eclipse.core.runtime.IProgressMonitor;
       
    27 import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
       
    28 import org.symbian.tools.tmw.core.projects.IProjectSetupConfig;
       
    29 import org.symbian.tools.tmw.core.runtimes.LibraryInstallDelegate;
       
    30 
       
    31 public class PhoneGapLibraryInstaller extends LibraryInstallDelegate {
       
    32 
       
    33     public void execute(IProject project, IProjectFacetVersion fv, Object config, IProgressMonitor monitor)
       
    34             throws CoreException {
       
    35 
       
    36     }
       
    37 
       
    38     @Override
       
    39     protected IPath getBasePath(IProject project, IProjectSetupConfig setupConfig) {
       
    40         // TODO Auto-generated method stub
       
    41         return null;
       
    42     }
       
    43 
       
    44     @Override
       
    45     protected boolean isIncludeFile(IPath entry) {
       
    46         // TODO Auto-generated method stub
       
    47         return false;
       
    48     }
       
    49 
       
    50     @Override
       
    51     protected InputStream openInputStream() throws CoreException {
       
    52         // TODO Auto-generated method stub
       
    53         return null;
       
    54     }
       
    55 
       
    56 }